vxe-pc-ui
Version:
A vue based PC component library
12 lines (10 loc) • 531 B
TypeScript
import { VxeTableConstructor, VxeTableMethods, VxeTablePrivateMethods } from '../components/table'
import { VxeGridConstructor, VxeGridPrivateMethods } from '../components/grid'
declare module '@vxe-ui/core' {
export namespace VxeGlobalHooksHandles {
export interface HookOptions {
setupTable?($table: VxeTableConstructor & VxeTableMethods & VxeTablePrivateMethods<any>): void | Record<string, any>
setupGrid?($grid: VxeGridConstructor & VxeGridPrivateMethods): void | Record<string, any>
}
}
}