Rocky_Mountain_Vending/.pnpm-store/v10/files/87/49f435b25acb969cadffd7d8f531aeab95b7eef67365cbbd8f619a81c7c115d22dd62de413ea252e7c99b4a036c0d56a1afb9326f88bb22aedcb97823a7a63
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

44 lines
1.6 KiB
Text

import type { IncomingMessage } from 'http';
import type { NextParsedUrlQuery } from '../../../../server/request-meta';
import type { RouteHas } from '../../../../lib/load-custom-routes';
import type { BaseNextRequest } from '../../../../server/base-http';
import type { Params } from '../../../../server/request/params';
export declare function matchHas(req: BaseNextRequest | IncomingMessage, query: Params, has?: RouteHas[], missing?: RouteHas[]): false | Params;
export declare function compileNonPath(value: string, params: Params): string;
export declare function parseDestination(args: {
destination: string;
params: Readonly<Params>;
query: Readonly<NextParsedUrlQuery>;
}): {
pathname: string;
hostname: string | null | undefined;
href: string;
hash: string;
search: string;
origin: string | null | undefined;
port?: string | null;
protocol?: string | null;
query: import("querystring").ParsedUrlQuery;
slashes: boolean | undefined;
};
export declare function prepareDestination(args: {
appendParamsToQuery: boolean;
destination: string;
params: Params;
query: NextParsedUrlQuery;
}): {
newUrl: string;
destQuery: import("querystring").ParsedUrlQuery;
parsedDestination: {
pathname: string;
hostname: string | null | undefined;
href: string;
hash: string;
search: string;
origin: string | null | undefined;
port?: string | null;
protocol?: string | null;
query: import("querystring").ParsedUrlQuery;
slashes: boolean | undefined;
};
};