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

5 lines
196 B
Text

/**
* Evaluates whether a value is set (aka not null or undefined).
* Returns true if the value is set, otherwise returns false.
*/
export declare const isSet: (value: unknown) => value is {};