msgpack.js 552 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.MsgPackJsonValueCodec = void 0;
  4. const msgpack_1 = require("../msgpack");
  5. const MsgPackDecoder_1 = require("../msgpack/MsgPackDecoder");
  6. class MsgPackJsonValueCodec {
  7. constructor(writer) {
  8. this.id = 'msgpack';
  9. this.format = 1;
  10. this.encoder = new msgpack_1.MsgPackEncoder(writer);
  11. this.decoder = new MsgPackDecoder_1.MsgPackDecoder();
  12. }
  13. }
  14. exports.MsgPackJsonValueCodec = MsgPackJsonValueCodec;
  15. //# sourceMappingURL=msgpack.js.map