File size: 319 Bytes
7c5b7bd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { Reader } from '@jsonjoy.com/util/lib/buffers/Reader';
import type { BinaryJsonDecoder, PackValue } from '../types';
export declare class UbjsonDecoder implements BinaryJsonDecoder {
    reader: Reader;
    read(uint8: Uint8Array): PackValue;
    decode(uint8: Uint8Array): unknown;
    readAny(): PackValue;
}