UNPKG

immudb-node

Version:

Node.js SDK for immudb written in TypeScript

12 lines (11 loc) 352 B
import * as schemaTypes from './proto/schema_pb'; declare class HTree { levels: Array<Array<Uint8Array>>; maxWidth: number; width: number; root: Uint8Array; constructor(maxWidth: number); buildWith(digests: Array<Uint8Array>): void; inclusionProof(i: number): schemaTypes.InclusionProof | undefined; } export default HTree;