HeaderRow.d.ts 872 B

123456789101112131415
  1. import type { CellType, StickyOffsets, ColumnType, CustomizeComponent, GetComponentProps, DefaultRecordType } from '../interface';
  2. export interface RowProps<RecordType = DefaultRecordType> {
  3. cells: readonly CellType<RecordType>[];
  4. stickyOffsets: StickyOffsets;
  5. flattenColumns: readonly ColumnType<RecordType>[];
  6. rowComponent: CustomizeComponent;
  7. cellComponent: CustomizeComponent;
  8. customHeaderRow: GetComponentProps<readonly ColumnType<RecordType>[]>;
  9. index: number;
  10. }
  11. declare const _default: import("vue").DefineComponent<RowProps<any>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<RowProps<any>>, {
  12. rowComponent: any;
  13. cellComponent: any;
  14. }>;
  15. export default _default;