index.js 304 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.transports = void 0;
  4. const polling_xhr_js_1 = require("./polling-xhr.js");
  5. const websocket_js_1 = require("./websocket.js");
  6. exports.transports = {
  7. websocket: websocket_js_1.WS,
  8. polling: polling_xhr_js_1.XHR
  9. };