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>
9 lines
341 B
Text
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[];
|