Rocky_Mountain_Vending/.pnpm-store/v10/files/27/77376f0e2414158ada35766352b1bb7cd948085f8842caf96b83c0cafd52c9f0ff48caaa0df56963580beee7ff54cceb8ecad453dfd28a06c5ca0cb418a5eb
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

6 lines
152 B
Text

/**
* @internal
*
* Checks that A and B extend each other.
*/
export type Exact<A, B> = [A] extends [B] ? ([B] extends [A] ? true : false) : false;