025588e9cc86375ce4c670d915b4132891e8c07e607f21e07738f0f7d56c5572f5af43a393b104a3b10d26d0ecf96e597ef1e92e0feb84552acadd4dacaaa4 693 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> & unknown;
  10. export type TableColumnInstance = InstanceType<typeof TableColumn> & unknown;
  11. export type { SummaryMethod, Table, TableProps, TableRefs, ColumnCls, ColumnStyle, CellCls, CellStyle, TreeNode, RenderRowData, Sort, Filter, TableColumnCtx, TableTooltipData, } from './src/table/defaults';