UNPKG

yw-common-list

Version:

基于vxe-table封装的自定义可配置表格

14 lines (11 loc) 383 B
import { MenuLinkParams } from '../menu' declare function menuFunc (params: MenuLinkParams, event: any): any; /** * 全局快捷菜单 */ export class VxeGlobalMenus { mixin(map: { [type: string]: typeof menuFunc }): VxeGlobalMenus; get(type: string): typeof menuFunc; add(type: string, callback: typeof menuFunc): VxeGlobalMenus; delete(type: string): VxeGlobalMenus; }