@jsonjoy.com/reactive-rpc
Version:
Reactive-RPC is a library for building reactive APIs over WebSocket, HTTP, and other RPCs.
13 lines • 389 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcValue = void 0;
const Value_1 = require("@jsonjoy.com/json-type/lib/value/Value");
class RpcValue extends Value_1.Value {
constructor(data, type) {
super(type, data);
this.data = data;
this.type = type;
}
}
exports.RpcValue = RpcValue;
//# sourceMappingURL=Value.js.map
;