UNPKG
@eyhn/msgpack-stream
Version:
latest (2.8.4)
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
MessagePack for ECMA-262/JavaScript/TypeScript
msgpack.org
msgpack/msgpack-javascript
@eyhn/msgpack-stream
/
dist.es2015+esm
/
ExtData.mjs
10 lines
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * ExtData is used to handle Extension Types that are not registered to ExtensionCodec. */
export
class
ExtData
{
constructor
(type,
data
) {
this
.type = type;
this
.
data
=
data
; } }
//# sourceMappingURL=ExtData.mjs.map