Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/753a41a95afc929b5774aae361947fa92fef2f214168b8b6c03e452aec109b6d2041709312ee7e864861707efd863f8fc18789dcbf72c668dbfd4806677878
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

8 lines
336 B
Text

import type { Readable } from "stream";
/**
* @internal
* @param stream - to be split.
* @returns stream split into two identical streams.
*/
export declare function splitStream(stream: Readable): Promise<[Readable, Readable]>;
export declare function splitStream(stream: ReadableStream): Promise<[ReadableStream, ReadableStream]>;