Rocky_Mountain_Vending/.pnpm-store/v10/files/52/d849a2cc65abace64606c937d609cc9cb18318522c4bdc41b292ae10bd2a6b46ede4706b826c2692673d62dcecca0e250b1d380058fbfad3427c32a44d9b69
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

13 lines
509 B
Text

/**
* @internal
*
* A util function converting ReadableStream into an async iterable.
* Reference: https://jakearchibald.com/2017/async-iterators-and-generators/#making-streams-iterate
*/
export declare const readableStreamtoIterable: <T>(readableStream: ReadableStream<T>) => AsyncIterable<T>;
/**
* @internal
*
* A util function converting async iterable to a ReadableStream.
*/
export declare const iterableToReadableStream: <T>(asyncIterable: AsyncIterable<T>) => ReadableStream<T>;