| 4 | import { Options, WebSocketHook } from './types'; |
| 5 | |
| 6 | export interface SocketIOMessageData { |
| 7 | type: string, |
| 8 | payload: any, |
| 9 | } |
| 10 | |
| 11 | const emptyEvent: SocketIOMessageData = { |
| 12 | type: 'empty', |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…