Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
318 B
Text
11 lines
318 B
Text
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;
|
|
}
|