Files
relay/node_modules/@msgpack/msgpack/dist/ExtData.js
Luke Hagar 98eb98b91a saving
2024-10-21 18:46:35 +00:00

14 lines
367 B
JavaScript

"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