Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/e058b4d83f569fe3e6ee5b20273343fde988d7415c2b0e13fab35660a4a5e4a885e6b510c5a90201968c864617b19d5be13e84c03a1ecf514bdaa0062d00f0
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
917 B
Text

import type { 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 {};