frontend/.pnpm-store/v3/files/64/9ec61f55a50c8f0ac8c9ef01cefa7ee0b17943b4554259e9cc710835cd52149e25ecd7c5c70378e9446078a8664c5dec5560d44ba953a249dccc5956003096

22 lines
697 B
Plaintext

export declare function number(n: number): void;
export declare function bool(b: boolean): void;
export declare function bytes(b: Uint8Array | undefined, ...lengths: number[]): void;
declare type Hash = {
(data: Uint8Array): Uint8Array;
blockLen: number;
outputLen: number;
create: any;
};
export declare function hash(hash: Hash): void;
export declare function exists(instance: any, checkFinished?: boolean): void;
export declare function output(out: any, instance: any): void;
declare const assert: {
number: typeof number;
bool: typeof bool;
bytes: typeof bytes;
hash: typeof hash;
exists: typeof exists;
output: typeof output;
};
export default assert;