Files
react/components/table/index.ts
witt 2dbf1ddf25 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-06-26 19:50:19 +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