Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/b37bbd26fb0ecbdf0e313993e3d8c6fce2135a9bcd7eeb52c1dda56508a0acf8a09ff143bcd1bfa15cc83438bc6860b453ce81c27fc2e795b3e218dedcf17f
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

10 lines
263 B
Text

/**
* Hashes a string using the SHA-256 algorithm and encodes it in Base64URL format.
*
* @param {string} message - The message to hash.
*
* @returns {string} The hash of the message.
*/
declare function digest(message: string): string;
export { digest };