Rocky_Mountain_Vending/.pnpm-store/v10/files/55/e5c499b808b6116b4fcc5df53ec4f23f1dfdc131eaefa7e9ae57ca5c3a2795dd08b57352da74177d7d05bd7ee89661c9e65c83a4284f06cc1e013c1c836dcb
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;
}