uniapp,h5

index.d.ts 245B

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