UNPKG

yuxuannnn_utils

Version:
14 lines (13 loc) 353 B
/** * 发布订阅模式 : 事件总线 */ export declare class EventBus { #private; /** * 监听事件 */ $on(eventType: string, handle: Function): void; $emit(eventType: string, ...args: any[]): void; $once(eventType: string, handle: Function): void; $off(eventType: string, handle: Function): void; }