* Format of the data when the Socket instance exists on another Socket.IO server
| 459 | * Format of the data when the Socket instance exists on another Socket.IO server |
| 460 | */ |
| 461 | interface SocketDetails<SocketData> { |
| 462 | id: SocketId; |
| 463 | handshake: Handshake; |
| 464 | rooms: Room[]; |
| 465 | data: SocketData; |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * Expose of subset of the attributes and methods of the Socket class |
nothing calls this directly
no outgoing calls
no test coverage detected