(type: string | symbol, ...args: Array<any>)
| 274 | |
| 275 | // oxlint-disable-next-line typescript/no-explicit-any |
| 276 | public override emit(type: string | symbol, ...args: Array<any>): boolean { |
| 277 | return super.emit(type, ...args); |
| 278 | } |
| 279 | |
| 280 | public async getPendingEventCount(event: string): Promise<number> { |
| 281 | const window = await this.getWindow(); |
no outgoing calls
no test coverage detected