Rocky_Mountain_Vending/.pnpm-store/v10/files/24/8a9d1d113bcf6c874180e633b4ef29324ccefeb5343ca8f495eb11d08e4819a587c71be82e846ef64d3530f13d0c2a8e2d2fe2f596642d55d87dc051007c91
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

14 lines
190 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;