Files
react/components/table/index.ts
witt 4062d7b5a8 refactor(table): redesign interfaces to improve the experience in TypeScript (#569)
* refactor(table): redesign interfaces to improve the experience in TypeScript

* docs: upgrade to new type exports

* style: fix lint warnings
2021-08-13 17:11:24 +08:00

15 lines
333 B
TypeScript

import Table from './table'
export type { TableProps } from './table'
export type { TableColumnProps } from './table-column'
export type {
TableOnCellClick,
TableAbstractColumn,
TableOnChange,
TableOnRowClick,
TableRowClassNameHandler,
TableDataItemBase,
TableColumnRender,
} from './table-types'
export default Table