UNPKG

328 BTypeScriptView Raw
1import type { ColumnType } from '../interface';
2export interface ColumnProps<RecordType> extends ColumnType<RecordType> {
3 children?: null;
4}
5/**
6 * This is a syntactic sugar for `columns` prop.
7 * So HOC will not work on this.
8 */
9declare function Column<RecordType>(_: ColumnProps<RecordType>): any;
10export default Column;