UNPKG

vxe-pc-ui

Version:
12 lines (10 loc) 531 B
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> } } }