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

21 lines
731 B
TypeScript

import { JsonPackMpint } from '../JsonPackMpint';
import type { IReader, IReaderResettable } from '@jsonjoy.com/buffers/lib';
import type { BinaryJsonDecoder } from '../types';
export declare class SshDecoder<R extends IReader & IReaderResettable = IReader & IReaderResettable> implements BinaryJsonDecoder {
reader: R;
constructor(reader?: R);
read(uint8: Uint8Array): unknown;
decode(uint8: Uint8Array): unknown;
readAny(): unknown;
readBoolean(): boolean;
readByte(): number;
readUint32(): number;
readUint64(): bigint;
readBinStr(): Uint8Array;
readStr(): string;
readAsciiStr(): string;
readMpint(): JsonPackMpint;
readNameList(): string[];
readBin(): Uint8Array;
}