header-cell.d.ts 468 B

123456789101112
  1. import type { ExtractPropTypes } from 'vue';
  2. export declare const tableV2HeaderCell: {
  3. class: StringConstructor;
  4. columnIndex: NumberConstructor;
  5. column: {
  6. readonly type: import("vue").PropType<import("./common").AnyColumn>;
  7. readonly required: false;
  8. readonly validator: ((val: unknown) => boolean) | undefined;
  9. __epPropKey: true;
  10. };
  11. };
  12. export declare type TableV2HeaderCell = ExtractPropTypes<typeof tableV2HeaderCell>;