1 | import { EXPAND_COLUMN, INTERNAL_HOOKS } from './constant';
|
2 | import { FooterComponents as Summary } from './Footer';
|
3 | import type { ColumnType, ColumnsType, Reference } from './interface';
|
4 | import Column from './sugar/Column';
|
5 | import ColumnGroup from './sugar/ColumnGroup';
|
6 | import type { TableProps } from './Table';
|
7 | import Table, { genTable } from './Table';
|
8 | import { INTERNAL_COL_DEFINE } from './utils/legacyUtil';
|
9 | import type { VirtualTableProps } from './VirtualTable';
|
10 | import VirtualTable, { genVirtualTable } from './VirtualTable';
|
11 | export { genTable, Summary, Column, ColumnGroup, type TableProps, INTERNAL_COL_DEFINE, EXPAND_COLUMN, INTERNAL_HOOKS, VirtualTable, genVirtualTable, type VirtualTableProps, type Reference, type ColumnType, type ColumnsType, };
|
12 | export default Table;
|