UNPKG

ontime-components

Version:
16 lines (15 loc) 407 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface ITableProps extends IProps { row: Function; data?: any[]; head?: Function; } interface ITableDefProps { data: any[]; } declare class Table extends PureComponent<ITableProps & ITableDefProps> { static defaultProps: ITableDefProps; render(): JSX.Element; } export { Table, ITableProps };