* The **`WebSocket.send()`** method enqueues the specified data to be transmitted to the server over the WebSocket connection, increasing the value of `bufferedAmount` by the number of bytes needed to contain the data. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/se
(message: (ArrayBuffer | ArrayBufferView) | string)
| 3698 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/send) |
| 3699 | */ |
| 3700 | send(message: (ArrayBuffer | ArrayBufferView) | string): void; |
| 3701 | /** |
| 3702 | * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing. |
| 3703 | * |