Rocky_Mountain_Vending/.pnpm-store/v10/files/91/03a61ba64afe3f3b2e3ac6e868cb6f02788f3eaa6b5f16bee2fd3bc82190bd00795be5428c97eabe922a67529b9dc3a6842a2931c0309411c552d538d88d94
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

35 lines
1.1 KiB
Text

import { Exact } from "../transform/exact";
/**
* @public
*
* A checked type that resolves to Blob if it is defined as more than a stub, otherwise
* resolves to 'never' so as not to widen the type of unions containing Blob
* excessively.
*/
export type BlobOptionalType = BlobDefined extends true ? Blob : Unavailable;
/**
* @public
*
* A checked type that resolves to ReadableStream if it is defined as more than a stub, otherwise
* resolves to 'never' so as not to widen the type of unions containing ReadableStream
* excessively.
*/
export type ReadableStreamOptionalType = ReadableStreamDefined extends true ? ReadableStream : Unavailable;
/**
* @public
*
* Indicates a type is unavailable if it resolves to this.
*/
export type Unavailable = never;
/**
* @internal
*
* Whether the global types define more than a stub for ReadableStream.
*/
export type ReadableStreamDefined = Exact<ReadableStream, {}> extends true ? false : true;
/**
* @internal
*
* Whether the global types define more than a stub for Blob.
*/
export type BlobDefined = Exact<Blob, {}> extends true ? false : true;