Files
SWebStatic/node_modules/blake3-wasm/esm/browser/hash.d.ts
T

12 lines
318 B
TypeScript
Raw Normal View History

2026-07-08 18:29:36 +08:00
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;
}