UNPKG

@msgpack/msgpack

Version:

MessagePack for ECMA-262/JavaScript/TypeScript

14 lines 368 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.cjs.map