Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/956cff964584dd7215aaca924855b2e68907aaefc0c33f396f88d1c0beb6cbffb2198e5a780e83c99c2b849d1874aa8ff57ac052c7e8b965d28f24a5b23c62
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
427 B
Text

import { ReadableOptions } from "stream";
import { Readable } from "stream";
export interface ReadFromBuffersOptions extends ReadableOptions {
buffers: Buffer[];
errorAfter?: number;
}
export declare class ReadFromBuffers extends Readable {
private buffersToRead;
private numBuffersRead;
private errorAfter;
constructor(options: ReadFromBuffersOptions);
_read(): boolean | undefined;
}