Rocky_Mountain_Vending/.pnpm-store/v10/files/80/92221e532f5bd915876a2c63260f4c26aff047281fc1c0152f4900c9f881dc0ff84ff5c122a272485c0502dd6b7882e7c4a2e9827d9e7694f6c828eaadec26
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
110 B
Text

/**
* @internal
*/
export type Mutable<Type> = {
-readonly [Property in keyof Type]: Type[Property];
};