Rocky_Mountain_Vending/.pnpm-store/v10/files/76/321957177f3b69cd63e7dff0b22b14c7ff7f527b7c4c75ee13af996d2cd4f9a3d107642a2a200e332e40c9581cb88bee484ae5eb8dd2b7215064c9fc547089
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
431 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(size: number): boolean | undefined;
}