(eventName: string, callbacks: Function)
| 10 | |
| 11 | export interface IEventBus { |
| 12 | add(eventName: string, callbacks: Function): void; |
| 13 | remove(eventName: string, callbacks: Function): void; |
| 14 | trigger(eventName: string, data: any): void; |
| 15 | } |
no outgoing calls
no test coverage detected