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
/
src
/
ExtData.ts
7 lines
(6 loc)
•
188 B
text/typescript
View Raw
1
2
3
4
5
6
7
/** * ExtData is used to handle Extension Types that are not registered to ExtensionCodec. */
export
class
ExtData
{
constructor
(
readonly
type
:
number
,
readonly
data
:
Uint8Array
) {} }