Spaces:
Configuration error
Configuration error
File size: 318 Bytes
5641073 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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;
}
|