UNPKG

245 BTypeScriptView Raw
1import { XHR } from "./polling-xhr.node.js";
2import { WS } from "./websocket.node.js";
3import { WT } from "./webtransport.js";
4export declare const transports: {
5 websocket: typeof WS;
6 webtransport: typeof WT;
7 polling: typeof XHR;
8};