Rocky_Mountain_Vending/.pnpm-store/v10/files/84/420f8381b40b427997cb81d11b8b820b7c000dd269af73f7c3e92479acaa3b5ba5ce71ab6a4f8139e0016e924c835fc3861b96cef9463060f7688b5e0efa2f
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

17 lines
400 B
Text

import type { QueryParameterBag } from "./http";
/**
* @internal
*
* Represents the components parts of a Uniform Resource Identifier used to
* construct the target location of a Request.
*/
export type URI = {
protocol: string;
hostname: string;
port?: number;
path: string;
query?: QueryParameterBag;
username?: string;
password?: string;
fragment?: string;
};