Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 42x 101x 101x | /**
* A wrapping for MessagePack extension or CBOR tag value. When encoder
* encounters {@link JsonPackExtension} it will encode it as a MessagePack
* extension or CBOR tag. Likewise, the decoder will
* decode extensions into {@link JsonPackExtension}.
*
* @category Value
*/
export class JsonPackExtension<T = Uint8Array> {
constructor(
public readonly tag: number,
public readonly val: T,
) {}
}
|