| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/parsmega.nuxt/node_modules/@jsonjoy.com/json-pack/lib/ion/ |
Upload File : |
import type { CachedUtf8Decoder } from '@jsonjoy.com/buffers/lib/utf8/CachedUtf8Decoder';
import type { IReader, IReaderResettable } from '@jsonjoy.com/buffers/lib';
import { Import } from './Import';
export declare class IonDecoderBase<R extends IReader & IReaderResettable = IReader & IReaderResettable> {
readonly reader: R;
readonly utf8Decoder: CachedUtf8Decoder;
protected symbols?: Import;
constructor(reader?: R);
val(): unknown;
protected readNull(length: number): null;
protected readBool(length: number): boolean | null;
protected readUint(length: number): number | null;
protected readNint(length: number): number | null;
protected readFloat(length: number): number | null;
protected readString(length: number): string | null;
protected readBinary(length: number): Uint8Array | null;
protected readList(length: number): unknown[] | null;
protected readStruct(length: number): Record<string, unknown> | null;
protected readAnnotation(length: number): unknown;
protected readVUint(): number;
protected readVInt(): number;
protected getSymbolText(symbolId: number): string;
protected validateBVM(): void;
protected readSymbolTable(): void;
}