Description
The .d.ts
file shows the following for WebSocket.send()
:
WebSocket.send(data: any)
However, according to MDN it should look something like this:
WebSocket.send(data: USVString | ArrayBuffer | Blob | ArrayBufferView)
The .d.ts
file shows the following for WebSocket.send()
:
WebSocket.send(data: any)
However, according to MDN it should look something like this:
WebSocket.send(data: USVString | ArrayBuffer | Blob | ArrayBufferView)