13 lines
343 B
TypeScript
Raw Normal View History

2022-07-18 19:06:37 +08:00
import Table from './src/Table.vue'
2022-10-11 13:59:30 +08:00
import { ElTable } from 'element-plus'
import { TableSetPropsType } from '@/types/table'
2022-07-18 19:06:37 +08:00
export interface TableExpose {
setProps: (props: Recordable) => void
setColumn: (columnProps: TableSetPropsType[]) => void
selections: Recordable[]
2022-10-11 13:59:30 +08:00
elTableRef: ComponentRef<typeof ElTable>
2022-07-18 19:06:37 +08:00
}
export { Table }