Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/1ca8b157ee44b45bd76c110e941c6c0304e9553763b11375db458820fdfb0a20e88eef0ec7b694188edd5bf48cdc475aac6a94dc6600b18cbaf4ec76aefb03
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

11 lines
266 B
Text

import type { IncomingMessage } from 'http';
export interface ParsedURL {
pathname: string;
search: string;
query: Record<string, string | string[]> | undefined;
hash: string | undefined;
raw: string;
}
export function parse(req: IncomingMessage): ParsedURL;