Rocky_Mountain_Vending/.pnpm-store/v10/files/40/471560c94c26de7f47c7df486c2e027436f07f253e9bb54879ad722824c4dacd4b5a1e937e0814b8bd89f758790052433ec9cebe14ed7f5190b8b5d45c5a9d
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

12 lines
467 B
Text

import { 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>;