Column.d.ts 360 B

1234567891011
  1. import type { FunctionalComponent } from 'vue';
  2. import type { ColumnType } from '../interface';
  3. export declare type ColumnProps<RecordType> = ColumnType<RecordType>;
  4. /**
  5. * This is a syntactic sugar for `columns` prop.
  6. * So HOC will not work on this.
  7. */
  8. declare const Column: {
  9. <T>(arg: T): FunctionalComponent<ColumnProps<T>>;
  10. };
  11. export default Column;