index.d.ts 655 B

1234567891011
  1. import Table from './src/table.vue';
  2. import TableColumn from './src/tableColumn';
  3. import type { SFCWithInstall } from 'element-plus/es/utils';
  4. export declare const ElTable: SFCWithInstall<typeof Table> & {
  5. TableColumn: typeof TableColumn;
  6. };
  7. export default ElTable;
  8. export declare const ElTableColumn: SFCWithInstall<typeof TableColumn>;
  9. export type TableInstance = InstanceType<typeof Table>;
  10. export type TableColumnInstance = InstanceType<typeof TableColumn>;
  11. export type { SummaryMethod, Table, TableProps, TableRefs, ColumnCls, ColumnStyle, CellCls, CellStyle, TreeNode, RenderRowData, Sort, Filter, TableColumnCtx, } from './src/table/defaults';