Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/20a51a8db12d617ebaced12524190e169db88c744cb593109ac204e1b5d8a40218e0c60b027128013e62a63400e893db755d2b4b94f15050ac9308b9029340
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

12 lines
291 B
Text

import * as url from '.'
type URLConstructor = typeof url.URL
type URLSearchParamsConstructor = typeof url.URLSearchParams
declare global {
type URL = url.URL
type URLSearchParams = url.URLSearchParams
const URL: URLConstructor
const URLSearchParams: URLSearchParamsConstructor
}