Saving inital relay POC

This commit is contained in:
Luke Hagar
2024-10-18 23:35:51 -05:00
commit cf969bbf7b
299 changed files with 38317 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import type { Packet, RawData } from "engine.io-parser";
import { BaseWS } from "./websocket.js";
/**
* WebSocket transport based on the `WebSocket` object provided by the `ws` package.
*
* Usage: Node.js, Deno (compat), Bun (compat)
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
* @see https://caniuse.com/mdn-api_websocket
*/
export declare class WS extends BaseWS {
createSocket(uri: string, protocols: string | string[] | undefined, opts: Record<string, any>): import("ws");
doWrite(packet: Packet, data: RawData): void;
}