Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/21fefbb8c2120b6617763548914a391014062ee9c87e5e93741c6df797045b519d6b1ead3d438a9dd49f3ebad5cc93ae049c3996f508523f0c05bd601b6414
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

15 lines
594 B
Text

import { ChecksumStreamInit } from "./ChecksumStream.browser";
/**
* @internal
* Alias prevents compiler from turning
* ReadableStream into ReadableStream<any>, which is incompatible
* with the NodeJS.ReadableStream global type.
*/
export type ReadableStreamType = ReadableStream;
/**
* @internal
*
* Creates a stream adapter for throwing checksum errors for streams without
* buffering the stream.
*/
export declare const createChecksumStream: ({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder, }: ChecksumStreamInit) => ReadableStreamType;