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[]);