github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/static_source/admin/src/components/Table/index.ts (about) 1 import Table from './src/Table.vue' 2 import { ElTable } from 'element-plus' 3 import { TableSetPropsType } from '@/types/table' 4 5 export interface TableExpose { 6 setProps: (props: Recordable) => void 7 setColumn: (columnProps: TableSetPropsType[]) => void 8 selections: Recordable[] 9 elTableRef: ComponentRef<typeof ElTable> 10 } 11 12 export { Table }