UNPKG

@bos-alpha/data

Version:

数据管理

10 lines (9 loc) 236 B
declare class EventBus { private events; constructor(); emit(type: string, ...args: any): void; on(type: string, fun: any): void; off(type: string): void; } declare const eventBus: EventBus; export default eventBus;