index.d.ts 194 B

1234567
  1. import { Polling } from "./polling";
  2. import { WebSocket } from "./websocket";
  3. declare const _default: {
  4. polling: typeof Polling;
  5. websocket: typeof WebSocket;
  6. };
  7. export default _default;