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>
14 lines
393 B
Text
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;
|