mirror of
https://github.com/zhigang1992/react.git
synced 2026-03-26 22:42:51 +08:00
* refactor(table): redesign interfaces to improve the experience in TypeScript * docs: upgrade to new type exports * style: fix lint warnings
15 lines
333 B
TypeScript
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
|