Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WebSocketConnection

interface WebSocketConnection {
extensions: string;
protocol: string;
readable: ReadableStream<string | Uint8Array>;
writable: WritableStream<string | Uint8Array>;
}

§Properties

§
extensions: string
[src]
§
protocol: string
[src]
§
readable: ReadableStream<string | Uint8Array>
[src]
§
writable: WritableStream<string | Uint8Array>
[src]