(eventName: string, ...args: any[])
| 104 | } |
| 105 | |
| 106 | emit(eventName: string, ...args: any[]) { |
| 107 | return this.ioSocket.emit.apply(this.ioSocket, <any>arguments); |
| 108 | } |
| 109 | |
| 110 | removeListener(eventName: string, callback?: () => void) { |
| 111 | return this.ioSocket.removeListener.apply( |
no test coverage detected