UNPKG
@gathertown/msgpack
Version:
latest (3.1.3)
3.1.3
3.0.0-beta2
MessagePack for ECMA-262/JavaScript/TypeScript
msgpack.org
msgpack/msgpack-javascript
@gathertown/msgpack
/
dist.esm
/
ExtData.mjs
12 lines
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * ExtData is used to handle Extension Types that are not registered to ExtensionCodec. */
export
class
ExtData
{ type;
data
;
constructor
(type,
data
) {
this
.type = type;
this
.
data
=
data
; } }
//# sourceMappingURL=ExtData.mjs.map