Rocky_Mountain_Vending/.pnpm-store/v10/files/29/0f92e1340abf29b94402f959a8df53cced87068e601bc313944735c9ba62fa6494b9ec4f78af12687623cd5b73fb19dee48e7aa9642b9827b4e0db3950a966
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
437 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 {};