first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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;
}