Rocky_Mountain_Vending/.pnpm-store/v10/files/5c/a2497e0dac2b50b9e685ed3cb8ba4d836542593b6f9a104da9a09627abe0a658184df7eaeca0f9ddcbce4a90d5619fa1714db9d13a03aba55ed78a7053da87
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

37 lines
949 B
Text

import { Checksum, Encoder } from "@smithy/types";
/**
* @internal
*/
export interface ChecksumStreamInit {
/**
* Base64 value of the expected checksum.
*/
expectedChecksum: string;
/**
* For error messaging, the location from which the checksum value was read.
*/
checksumSourceLocation: string;
/**
* The checksum calculator.
*/
checksum: Checksum;
/**
* The stream to be checked.
*/
source: ReadableStream;
/**
* Optional base 64 encoder if calling from a request context.
*/
base64Encoder?: Encoder;
}
declare const ChecksumStream_base: any;
/**
* This stub exists so that the readable returned by createChecksumStream
* identifies as "ChecksumStream" in alignment with the Node.js
* implementation.
*
* @extends ReadableStream
*/
export declare class ChecksumStream extends ChecksumStream_base {
}
export {};