Rocky_Mountain_Vending/.pnpm-store/v10/files/db/902a996140358c9d7463e03fd6f7992599f64dc97dd708e50c6af4f7741dd6bf46ccd7835b0ea9b5aa4c9d17bbe528cd86101311cf45659b4e4e5124144b05
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
419 B
Text

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