@perma/map
Version:
Immutable hash maps implemented as hash array papped tries
9 lines • 450 B
TypeScript
export function hash64(bytes: Uint8Array): Uint8Array;
export function configure({ bitWidth, hash }: Partial<API.Options<Uint8Array>>): API.Path<Uint8Array>;
export function read(key: Uint8Array, depth: number | undefined, { bitWidth, hash, hashSize }: {
bitWidth?: number | undefined;
hashSize: number;
hash: (input: Uint8Array) => Uint8Array;
}): number;
import * as API from "./api.js";
//# sourceMappingURL=InfiniteUint8Array.d.ts.map