Rocky_Mountain_Vending/.pnpm-store/v10/files/be/c0dd504d8dc2bd3a6fbad1eb00cc7a3efa88a8793f9cf03908e677340f668369869fe79d20bbec5196808bb049b200426ec313544cd3d65aeaefeb68a86a9c
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
439 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(size: number): boolean | undefined;
}