(event: string | symbol, listener: (...args: any[]) => void)
| 44 | once(event: string | symbol, listener: (...args: any[]) => void): this; |
| 45 | removeListener(event: string | symbol, listener: (...args: any[]) => void): this; |
| 46 | off(event: string | symbol, listener: (...args: any[]) => void): this; |
| 47 | removeAllListeners(event?: string | symbol): this; |
| 48 | setMaxListeners(n: number): this; |
| 49 | getMaxListeners(): number; |
no outgoing calls
no test coverage detected