@jsonjoy.com/reactive-rpc
Version:
Reactive-RPC is a library for building reactive APIs over WebSocket, HTTP, and other RPCs.
14 lines • 688 B
JavaScript
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
;