Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/5147dbff9cd9f7d1b7dfa113b83386f0a78c52b51f9dcbf8abb9bc23d2d7c667fdd5e32d2bed1ca04e40ce963f2e05a73925283ff96c976e61186e1477c4a8
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
207 B
Text

/**
* @param stream
* @returns stream split into two identical streams.
*/
export declare function splitStream(stream: ReadableStream | Blob): Promise<[
ReadableStream,
ReadableStream
]>;