| 1 | export type Listener = (...args: any[]) => void |
| 2 | |
| 3 | export class Emitter { |
| 4 | static listenerCount(emitter: Emitter, type: string | number): number { |
| 5 | return emitter.listenerCount(type) |
| 6 | } |
nothing calls this directly
no outgoing calls
no test coverage detected