Rocky_Mountain_Vending/.pnpm-store/v10/files/30/87ade89efbe48575d3008539fa757eeafad29a5e3b1db33c2e05cd0cf06906a301b8c68a611b6809cc7077b7d985f1b1931c8318a0d8a57eb5a02fe31bff48
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

9 lines
341 B
Text

import { ChecksumAlgorithm } from "./constants";
/**
* List of algorithms supported by client.
*/
export declare const CLIENT_SUPPORTED_ALGORITHMS: ChecksumAlgorithm[];
/**
* Priority order for validating checksum algorithm. A faster algorithm has higher priority.
*/
export declare const PRIORITY_ORDER_ALGORITHMS: ChecksumAlgorithm[];