You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
693 B

1 month ago
  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';