Rocky_Mountain_Vending/.pnpm-store/v10/files/12/dbc97960bb9a5174650fb8218a4c5d665acf8c0fe164fa2af5fc76891f5973637c5d8e7362fa50f9bbfc47d8c192138461c4bb2c3861023c51033639693ac3
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
584 B
Text

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