index.d.ts 626 B

123456789101112
  1. import type { GetRowKey, Key, GetComponentProps } from '../interface';
  2. export interface BodyProps<RecordType> {
  3. data: RecordType[];
  4. getRowKey: GetRowKey<RecordType>;
  5. measureColumnWidth: boolean;
  6. expandedKeys: Set<Key>;
  7. customRow: GetComponentProps<RecordType>;
  8. rowExpandable: (record: RecordType) => boolean;
  9. childrenColumnName: string;
  10. }
  11. declare const _default: import("vue").DefineComponent<BodyProps<any>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BodyProps<any>>, {}, {}>;
  12. export default _default;