UNPKG

@ekidpro/ekp-conference

Version:

8 lines (7 loc) 283 B
export declare class Events { events: Record<string, ((...args: any) => void)[]>; addEvent(key: string, fnc: (...args: any) => void): void; removeEvent(key: string, fnc: (...args: any) => void): void; removeEventAll(): void; emit(key: string, args: any): void; }