Files
socket.io/packages/engine.io-client/lib/transports/index.ts
2024-07-08 10:59:50 +02:00

10 lines
212 B
TypeScript
Executable File

import { XHR } from "./polling-xhr.node.js";
import { WS } from "./websocket.node.js";
import { WT } from "./webtransport.js";
export const transports = {
websocket: WS,
webtransport: WT,
polling: XHR,
};