Files
starface-outlook-sync-addin/node_modules/@jsonjoy.com/json-pack/lib/xdr/XdrSchemaDecoder.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

19 lines
592 B
TypeScript

import type { IReader, IReaderResettable } from '@jsonjoy.com/buffers/lib';
import type { XdrSchema } from './types';
export declare class XdrSchemaDecoder {
readonly reader: IReader & IReaderResettable;
private decoder;
constructor(reader?: IReader & IReaderResettable);
decode(data: Uint8Array, schema: XdrSchema): unknown;
private readValue;
private readEnum;
private readOpaque;
private readVarlenOpaque;
private readString;
private readArray;
private readVarlenArray;
private readStruct;
private readUnion;
private readOptional;
}