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>
13 lines
496 B
Text
13 lines
496 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>;
|