You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wswrapper.d.ts 453B

123456789101112131415
  1. /// <reference types="node" />
  2. import { EventEmitter } from 'events';
  3. declare class WSWrapper extends EventEmitter {
  4. private _ws;
  5. static CONNECTING: number;
  6. static OPEN: number;
  7. static CLOSING: number;
  8. static CLOSED: number;
  9. constructor(url: any, _protocols: any, _websocketOptions: any);
  10. close(): void;
  11. send(message: any): void;
  12. get readyState(): number;
  13. }
  14. export = WSWrapper;
  15. //# sourceMappingURL=wswrapper.d.ts.map