UNPKG

320 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2import { ElementProps } from '../core/ViewComponent';
3import { ColumnProps } from './Column';
4export interface TableColProps extends ElementProps {
5 column: ColumnProps;
6 last: boolean;
7}
8declare const TableCol: FunctionComponent<TableColProps>;
9export default TableCol;