UNPKG

@jsonjoy.com/reactive-rpc

Version:

Reactive-RPC is a library for building reactive APIs over WebSocket, HTTP, and other RPCs.

23 lines 724 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Http2ConnectionContext = void 0; class Http2ConnectionContext { constructor(req, res, path, query, ip, token, params, meta, reqCodec, resCodec, msgCodec) { this.req = req; this.res = res; this.path = path; this.query = query; this.ip = ip; this.token = token; this.params = params; this.meta = meta; this.reqCodec = reqCodec; this.resCodec = resCodec; this.msgCodec = msgCodec; } async body() { throw new Error('not implemented'); } } exports.Http2ConnectionContext = Http2ConnectionContext; //# sourceMappingURL=context.js.map