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>
12 lines
460 B
Text
12 lines
460 B
Text
import type { Readable } from "stream";
|
|
/**
|
|
* Convert object stream piped in into an async iterable. This
|
|
* daptor should be deprecated when Node stream iterator is stable.
|
|
* Caveat: this adaptor won't have backpressure to inwards stream
|
|
*
|
|
* Reference: https://nodejs.org/docs/latest-v11.x/api/stream.html#stream_readable_symbol_asynciterator
|
|
*/
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function readabletoIterable<T>(readStream: Readable): AsyncIterable<T>;
|