Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/f3c61d2550170c79e171ebe92e7af3e55ea892f37923529a697467b4ac7cb94c05d876c4168b70b4fe2cd7bb89e2a3e51899d5f391a57c44ec7cfec9720449
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

32 lines
1.2 KiB
Text

import { Readable } from "stream";
import { BlobOptionalType, ReadableStreamOptionalType } from "../externals-check/browser-externals-check";
/**
* @public
*
* This is the union representing the modeled blob type with streaming trait
* in a generic format that does not relate to HTTP input or output payloads.
*
* Note: the non-streaming blob type is represented by Uint8Array, but because
* the streaming blob type is always in the request/response paylod, it has
* historically been handled with different types.
*
* @see https://smithy.io/2.0/spec/simple-types.html#blob
*
* For compatibility with its historical representation, it must contain at least
* Readble (Node.js), Blob (browser), and ReadableStream (browser).
*
* @see StreamingPayloadInputTypes for FAQ about mixing types from multiple environments.
*/
export type StreamingBlobTypes = NodeJsRuntimeStreamingBlobTypes | BrowserRuntimeStreamingBlobTypes;
/**
* @public
*
* Node.js streaming blob type.
*/
export type NodeJsRuntimeStreamingBlobTypes = Readable;
/**
* @public
*
* Browser streaming blob types.
*/
export type BrowserRuntimeStreamingBlobTypes = ReadableStreamOptionalType | BlobOptionalType;