Rocky_Mountain_Vending/.pnpm-store/v10/files/36/9f96ab0fac17acd76c427ecc6788421bc015280cfb4b09934d4858a824474debc43d65bc3d8d7f6b44a1f846020b4d6dc3a0087c6442c8536e0aa399ae53f8
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

16 lines
421 B
Text

/**
* @internal
* Alias prevents compiler from turning
* ReadableStream into ReadableStream<any>, which is incompatible
* with the NodeJS.ReadableStream global type.
*/
type ReadableStreamType = ReadableStream;
/**
* @internal
*/
export declare const isReadableStream: (stream: unknown) => stream is ReadableStreamType;
/**
* @internal
*/
export declare const isBlob: (blob: unknown) => blob is Blob;
export {};