Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/33e6b6d36de64aec88d1fe1c1581a63064bc99be8a0d458debbae30b6a9ed429f1fc180e08da1ff5c72627ff80cf03d74ed6d25a186ae0fb469d4283cc3554
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

12 lines
704 B
Text

import type { Logger } from "@smithy/types";
import { Readable } from "node:stream";
/**
* @internal
* @param upstream - any Readable or ReadableStream.
* @param size - byte or character length minimum. Buffering occurs when a chunk fails to meet this value.
* @param onBuffer - for emitting warnings when buffering occurs.
* @returns another stream of the same data and stream class, but buffers chunks until
* the minimum size is met, except for the last chunk.
*/
export declare function createBufferedReadable(upstream: Readable, size: number, logger?: Logger): Readable;
export declare function createBufferedReadable(upstream: ReadableStream, size: number, logger?: Logger): ReadableStream;