mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
15 lines
564 B
TypeScript
15 lines
564 B
TypeScript
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;
|
|
}
|