Rocky_Mountain_Vending/.pnpm-store/v10/files/05/459ab8abcfa3a9886e55e66c8b79b573dac560f8a6292033ac916b6edac451a93d47808cef8c6973e609d841ac0115be8a7bb62dcc4bc36adab96ac3bf7eab
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

10 lines
172 B
Text

interface URLError extends Error {
readonly code: string
readonly input?: string
}
declare class URLError extends Error {
private constructor()
}
export = URLError