UNPKG

@msgpack/msgpack

Version:

MessagePack for JavaScript/ECMA-262

14 lines 367 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExtData = void 0; /** * ExtData is used to handle Extension Types that are not registered to ExtensionCodec. */ class ExtData { constructor(type, data) { this.type = type; this.data = data; } } exports.ExtData = ExtData; //# sourceMappingURL=ExtData.js.map