Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/728da6fac70930973d1ef70edeb68b0e131d17a8f3bb4bb6b29079cb011ecd47bae72be55a4ea6363e1087bb31ec2206f63481d688ee125d2b84d3a71cd18c
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
412 B
Text

import { 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;
};