socialmedia/node_modules/blake3-wasm/dist/browser/hash.d.ts
2026-03-03 13:45:56 +05:30

12 lines
318 B
TypeScript

import { BrowserEncoding } from './encoding';
/**
* Hash returned from functions in the browser.
*/
export declare class Hash extends Uint8Array {
/**
* A constant-time comparison against the other hash/array.
*/
equals(other: unknown): boolean;
toString(encoding?: BrowserEncoding): string;
}