Rocky_Mountain_Vending/.pnpm-store/v10/files/df/e92bb070da6a0bd667b444646ea1d46685cfd9c8270fef872028f678d08493be72cc456be77a10bca3ab752b4156c2ac7a30a3349b979870e8e24c46f4ef1f
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
745 B
Text

import type { ParsedUrlQuery } from 'querystring';
export interface ParsedRelativeUrl {
hash: string;
href: string;
pathname: string;
query: ParsedUrlQuery;
search: string;
slashes: undefined;
}
/**
* Parses path-relative urls (e.g. `/hello/world?foo=bar`). If url isn't path-relative
* (e.g. `./hello`) then at least base must be.
* Absolute urls are rejected with one exception, in the browser, absolute urls that are on
* the current origin will be parsed as relative
*/
export declare function parseRelativeUrl(url: string, base?: string, parseQuery?: true): ParsedRelativeUrl;
export declare function parseRelativeUrl(url: string, base: string | undefined, parseQuery: false): Omit<ParsedRelativeUrl, 'query'>;