(method: string, params?: Record<string, unknown>)
| 12 | ) {} |
| 13 | |
| 14 | send(method: string, params?: Record<string, unknown>): Promise<unknown> { |
| 15 | return this.session.send(method as any, params) |
| 16 | } |
| 17 | |
| 18 | on(event: string, id: string, once = false): void { |
| 19 | if (!this.listenerIds[event]) { |
no outgoing calls
no test coverage detected