(event: string, handler: ISocketHandler<TSocket>)
| 85 | } |
| 86 | |
| 87 | public on(event: string, handler: ISocketHandler<TSocket>) { |
| 88 | this.socketIoNamespace.on(event, handler) |
| 89 | } |
| 90 | |
| 91 | public emit(event: string, data: string) { |
| 92 | this.socketIoNamespace.emit(event, data) |
no outgoing calls
no test coverage detected