import { MenuLinkParams } from '../menu'

declare function menuFunc (params: MenuLinkParams, event: any): any;

/**
 * 全局快捷菜单
 */
export class VhbGlobalMenus {
  mixin(map: { [type: string]: typeof menuFunc }): VhbGlobalMenus;
  get(type: string): typeof menuFunc;
  add(type: string, callback: typeof menuFunc): VhbGlobalMenus;
  delete(type: string): VhbGlobalMenus;
}
