element-plus/packages/components/table-v2/index.ts
JeremyWuuuuu 14cfb0500f
docs(components): [virtualized-table] finishing leftovers (#7496)
- Finishing the documentation examples
- Add APIs to the documentation
- Fix some issue while updating the documentations
2022-05-05 00:54:49 +08:00

25 lines
630 B
TypeScript

import { withInstall } from '@element-plus/utils'
import TableV2 from './src/table-v2'
export {
Alignment as TableV2Alignment,
FixedDir as TableV2FixedDir,
SortOrder as TableV2SortOrder,
} from './src/constants'
export { default as TableV2 } from './src/table-v2'
export { placeholderSign as TableV2Placeholder } from './src/private'
export const ElTableV2 = withInstall(TableV2)
export type {
Column,
Columns,
SortBy,
SortState,
TableV2CustomizedHeaderSlotParam,
} from './src/types'
export * from './src/table'
export * from './src/row'
export type { HeaderCellSlotProps } from './src/renderers/header-cell'