UNPKG

@layui/layui-vue

Version:

a component library for Vue 3 base on layui-vue

10 lines (9 loc) 378 B
import type { TableColumn, TableProps } from "../typing"; export interface TableToolBarType { defaultToolbar: TableProps["defaultToolbar"]; spanMethod: TableProps["spanMethod"]; hierarchicalColumns: Array<Array<TableColumn>>; lastLevelAllColumns: Array<TableColumn>; tableDataSource: TableProps["dataSource"]; tableRef: HTMLDivElement | null; }