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
/
src
/
ExtData.ts
10 lines
(9 loc)
•
201 B
text/typescript
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
(
readonly
type
:
number
,
readonly
data
:
Uint8Array
,
) {} }