merkle-reference
Version:
This is a TS library implementing [merkle reference] specification.
7 lines • 430 B
TypeScript
export const tag: symbol;
export function is(source: unknown): source is Uint8Array;
export function toBytes(value: Uint8Array): Uint8Array<ArrayBufferLike>;
export function concat(operand: Uint8Array, modifier: Uint8Array): Uint8Array<ArrayBuffer>;
export function compare(self: Uint8Array, other: Uint8Array): 0 | -1 | 1;
export function toTree(value: Uint8Array): import("./tree.js").Branch;
//# sourceMappingURL=bytes.d.ts.map