| 1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.WsFrameOpcode = void 0;
- var WsFrameOpcode;
- (function (WsFrameOpcode) {
- WsFrameOpcode[WsFrameOpcode["CONTINUE"] = 0] = "CONTINUE";
- WsFrameOpcode[WsFrameOpcode["TEXT"] = 1] = "TEXT";
- WsFrameOpcode[WsFrameOpcode["BINARY"] = 2] = "BINARY";
- WsFrameOpcode[WsFrameOpcode["MIN_CONTROL_OPCODE"] = 8] = "MIN_CONTROL_OPCODE";
- WsFrameOpcode[WsFrameOpcode["CLOSE"] = 8] = "CLOSE";
- WsFrameOpcode[WsFrameOpcode["PING"] = 9] = "PING";
- WsFrameOpcode[WsFrameOpcode["PONG"] = 10] = "PONG";
- })(WsFrameOpcode || (exports.WsFrameOpcode = WsFrameOpcode = {}));
- //# sourceMappingURL=constants.js.map
|