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>
37 lines
949 B
Text
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 {};
|