You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
383 B

import { JsonDecoder } from './JsonDecoder';
import type { PackValue } from '../types';
export declare class DecodeFinishError extends Error {
readonly value: unknown;
constructor(value: unknown);
}
export declare class JsonDecoderPartial extends JsonDecoder {
readAny(): unknown;
readArr(): unknown[];
readObj(): PackValue | Record<string, unknown> | unknown;
}