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>
8 lines
304 B
Text
8 lines
304 B
Text
/**
|
|
* @internal
|
|
* @param stream
|
|
* @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 function headStream(stream: ReadableStream, bytes: number): Promise<Uint8Array>;
|