(
toClientId: IdOrNull,
...args: [requestId: IdOrNull, message: Message, body: any]
)
| 44 | }; |
| 45 | |
| 46 | const send = ( |
| 47 | toClientId: IdOrNull, |
| 48 | ...args: [requestId: IdOrNull, message: Message, body: any] |
| 49 | ): void => |
| 50 | arrayForEach(createPayloads(toClientId, ...args, fragmentSize), (payload) => |
| 51 | webSocket.send(payload), |
| 52 | ); |
| 53 | |
| 54 | const destroy = (): void => { |
| 55 | webSocket.close(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…