Rocky_Mountain_Vending/.pnpm-store/v10/files/df/cf3d0424f80d9c9dd4bb65dfeb1adc7785c1f7a5e556b1ec19456d8aa92982bdda6960b2ac25494043984c174012c6b0a78baec6e3dd119edc5d1de2bed71d
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

10 lines
360 B
Text

import type { SerdeContext } from "@smithy/types";
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
/**
* @internal
*
* Collect low-level response body stream to Uint8Array.
*/
export declare const collectBody: (streamBody: any | undefined, context: {
streamCollector: SerdeContext["streamCollector"];
}) => Promise<Uint8ArrayBlobAdapter>;