| 114 | type EventCallback = (sender: Emitter, data: any) => void; |
| 115 | |
| 116 | interface EventHandlerMap { |
| 117 | [event: string]: EventCallback; |
| 118 | } |
| 119 | |
| 120 | interface Emitter { |
| 121 | addHandler(callbacks: EventHandlerMap, context?: any): void; |
nothing calls this directly
no outgoing calls
no test coverage detected