From 3f241024cf370d33e9e1942dfe284ab49e6f0b74 Mon Sep 17 00:00:00 2001 From: Surma Date: Sun, 13 Feb 2022 13:12:51 +0000 Subject: [PATCH] docs(websockets): add comment about Deno.upgradeWebSocket() --- ext/websocket/lib.deno_websocket.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/websocket/lib.deno_websocket.d.ts b/ext/websocket/lib.deno_websocket.d.ts index 31e5782a6a..7a39a85ca9 100644 --- a/ext/websocket/lib.deno_websocket.d.ts +++ b/ext/websocket/lib.deno_websocket.d.ts @@ -34,7 +34,11 @@ interface WebSocketEventMap { open: Event; } -/** Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. */ +/** + * Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. + * + * If you are looking to create a WebSocket server, please take a look at Deno.upgradeWebSocket(). + */ declare class WebSocket extends EventTarget { constructor(url: string, protocols?: string | string[]);