mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
bef9539e22
* feat: add ref * feat: table support reference * chore: rename * chore: proxy * test: add test case * chore: fix lint * docs: update desc * docs: update desc * docs: update desc * chore: clean up * chore: fix lint
10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
import { type TablePaginationConfig, type TableProps } from './InternalTable';
|
|
import Table from './Table';
|
|
|
|
export type { ColumnProps } from './Column';
|
|
export type { ColumnGroupType, ColumnType, ColumnsType } from './interface';
|
|
export type { Reference as TableRef } from 'rc-table';
|
|
export type { TablePaginationConfig, TableProps };
|
|
|
|
export default Table;
|