Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/b51d0144846ebce523b8e879ea199025bee782fc88b0a54feb103d1c7ef496cd952ebf3267b7ecf231af8adad820e464bc58a6ae6790b257eba59557c38859
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

2 lines
120 B
Text

// Polyfill for TypeScript < 3.5 compatibility
export type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;