Dorian 0d073fa89e Add comprehensive installation and setup documentation
- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
2026-01-27 17:18:21 +00:00

15 lines
676 B
TypeScript

import { ConsumableBuffer } from './consumable-buffer.js';
export declare function wrapHash(hashFn: (value: Uint8Array) => Promise<Uint8Array>): (value: InfiniteHash | Uint8Array) => InfiniteHash;
export declare class InfiniteHash {
_value: Uint8Array;
_hashFn: (value: Uint8Array) => Promise<Uint8Array>;
_depth: number;
_availableBits: number;
_currentBufferIndex: number;
_buffers: ConsumableBuffer[];
constructor(value: Uint8Array, hashFn: (value: Uint8Array) => Promise<Uint8Array>);
take(bits: number): Promise<number>;
untake(bits: number): void;
_produceMoreBits(): Promise<void>;
}
//# sourceMappingURL=consumable-hash.d.ts.map