Rocky_Mountain_Vending/.pnpm-store/v10/files/84/3cafdd87b4d543c7cb40f440efc57423290c0c56c3a3fd8a649eccfa3318b10ca2cc509aae5d10d2d9ce14e67c05fffc930a2766600f39db735f6eebb406fa
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
201 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 {};