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
/
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
); }