Rocky_Mountain_Vending/.pnpm-store/v10/files/75/d3a405f1380ac9b436167aa823efe07bd6ed92c991dc1cf353ff4caf1bdc25273f8ba3cd3118f864b54ef0463d7c3b0e3288df7b188fc421be71efdf76dd58
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

11 lines
530 B
Text

import type { Readable } from "stream";
import type { ChecksumStreamInit } from "./ChecksumStream";
import type { ReadableStreamType } from "./createChecksumStream.browser";
/**
* @internal
*
* Creates a stream mirroring the input stream's interface, but
* performs checksumming when reading to the end of the stream.
*/
export declare function createChecksumStream(init: ChecksumStreamInit<ReadableStreamType>): ReadableStreamType;
export declare function createChecksumStream(init: ChecksumStreamInit<Readable>): Readable;