UNPKG

epic-designer

Version:

基于vue3的设计器,可视化开发页面表单

11 lines (10 loc) 434 B
export declare function createEventBus(channelId?: string): { clear: () => void; emit: (event: any, ...args: any[]) => void; emitRoot: (event: any, ...args: any[]) => void; off: (event: any, callback: any) => void; offRoot: (event: any, callback: any) => void; on: (event: any, callback: any) => any; onRoot: (event: any, callback: any) => any; }; export type EventBus = ReturnType<typeof createEventBus>;