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