Rocky_Mountain_Vending/.pnpm-store/v10/files/44/84c3cabef5f2dd02125047636447297a04b51ac3222382af9c1f59c2644be85eb423544f80d1fec3fddeb65defc7614a2e5dde8bb472bfa63900f18932b645
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
711 B
Text

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