index.js 144 B

123456
  1. import { XHR } from "./polling-xhr.js";
  2. import { WS } from "./websocket.js";
  3. export const transports = {
  4. websocket: WS,
  5. polling: XHR
  6. };