Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/590d9af068a78ca1ed7e1aa5c72b77125dd037d681e34bbdb95b38882dd1627e97d87114e2be379c1d3a28e49abc800015a412b97de953545245faaa6b75a6
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

9 lines
370 B
Text

import type { Readable } from "stream";
/**
* @internal
* @param stream - to be read.
* @param bytes - read head bytes from the stream and discard the rest of it.
*
* Caution: the input stream must be destroyed separately, this function does not do so.
*/
export declare const headStream: (stream: Readable | ReadableStream, bytes: number) => Promise<Uint8Array>;