index.d.ts 239 B

12345678
  1. import { Polling } from "./polling.js";
  2. import { WS } from "./websocket.js";
  3. import { WT } from "./webtransport.js";
  4. export declare const transports: {
  5. websocket: typeof WS;
  6. webtransport: typeof WT;
  7. polling: typeof Polling;
  8. };