type alias WSContextimport { type WSContext } from "https://dotland.deno.dev/x/hono@v4.3.11/helper/websocket/index.ts"; definition: { raw?: unknown; binaryType: BinaryType; readyState: WSReadyState; url: URL | null; protocol: string | null; send(source: string | ArrayBuffer | Uint8Array, options?: { compress: boolean; }): void; close(code?: number, reason?: string): void; }