Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/7bfa97e5cbc02e51ff8c65ab5993c09ecdc4c0ea91b36519b7d3f9ebfae39acf0462402b14bcf4f9e37a4da9254b72d0d2477577146861bcb4880381a2c3ba
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
116 B
Text

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