@jsonjoy.com/json-pack
Version:
High-performance JSON serialization library
21 lines (20 loc) • 695 B
TypeScript
import { Reader } from '@jsonjoy.com/util/lib/buffers/Reader';
import type { BinaryJsonDecoder, PackValue } from '../types';
export declare const readKey: (reader: Reader) => string;
export declare class JsonDecoder implements BinaryJsonDecoder {
reader: Reader;
read(uint8: Uint8Array): unknown;
decode(uint8: Uint8Array): unknown;
readAny(): unknown;
skipWhitespace(): void;
readNull(): null;
readTrue(): true;
readFalse(): false;
readBool(): unknown;
readNum(): number;
readStr(): string;
tryReadBin(): Uint8Array | undefined;
readBin(): Uint8Array;
readArr(): unknown[];
readObj(): PackValue | Record<string, unknown> | unknown;
}