Column.d.ts 400 B

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