Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/852ee8688e6308d32183f5f7d3ae2257523027c8f203e3fbb2b3e4adf7118a61b9393bfbeab2d27c170b91d713efbe0bb563faa6c99f895e750ce8b08b0f88
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
355 B
Text

import { ChecksumConstructor, Encoder, HashConstructor } from "@smithy/types";
export interface GetChecksumDigestOptions {
checksumAlgorithmFn: ChecksumConstructor | HashConstructor;
base64Encoder: Encoder;
}
export declare const getChecksum: (
body: unknown,
{ checksumAlgorithmFn, base64Encoder }: GetChecksumDigestOptions
) => Promise<string>;