Rocky_Mountain_Vending/.pnpm-store/v10/files/97/6094dc0eee5592d9455737330823f834adcc9fee0563156227f09a24a079fafb4ab9c7ff2b3f0900029b792c52a6dffb22d39f360101a00392c8d620fd4656
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

14 lines
393 B
Text

import type { ParsedUrlQuery } from 'querystring';
export interface ParsedUrl {
hash: string;
hostname?: string | null;
href: string;
pathname: string;
port?: string | null;
protocol?: string | null;
query: ParsedUrlQuery;
origin?: string | null;
search: string;
slashes: boolean | undefined;
}
export declare function parseUrl(url: string): ParsedUrl;