Column.d.ts 328 B

12345678910
  1. import type { ColumnType } from '../interface';
  2. export 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. */
  9. declare function Column<RecordType>(_: ColumnProps<RecordType>): any;
  10. export default Column;