mirror of
https://github.com/JonasunderscoreJones/aka-worker.git
synced 2025-10-23 09:59:19 +02:00
11 lines
318 B
TypeScript
11 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;
|
|
}
|