mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
10 lines
212 B
TypeScript
Executable File
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,
|
|
};
|