| 57 | ]); |
| 58 | |
| 59 | export interface SocketReservedEventsMap { |
| 60 | disconnect: (reason: DisconnectReason, description?: any) => void; |
| 61 | disconnecting: (reason: DisconnectReason, description?: any) => void; |
| 62 | error: (err: Error) => void; |
| 63 | } |
| 64 | |
| 65 | // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener |
| 66 | export interface EventEmitterReservedEventsMap { |
nothing calls this directly
no outgoing calls
no test coverage detected