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>
13 lines
431 B
Text
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;
|
|
}
|