(event: string, listener: () => void)
| 48 | query: {}, |
| 49 | listeners, |
| 50 | on(event: string, listener: () => void) { |
| 51 | listeners.set(event, listener); |
| 52 | return this; |
| 53 | }, |
| 54 | }; |
| 55 | } |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected