Rocky_Mountain_Vending/.pnpm-store/v10/files/8d/dddbb5a8380403a83495f77bd04481f7ea87654dc53d5ca8ba3285fc869a2b0a977821000c323ee3433e4826539be038de5111c75d6f75a77b9331299fa534
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

49 lines
1.4 KiB
Text

import type { I18NProvider } from '../../../../server/lib/i18n-provider';
export interface NextPathnameInfo {
/**
* The base path in case the pathname included it.
*/
basePath?: string;
/**
* The buildId for when the parsed URL is a data URL. Parsing it can be
* disabled with the `parseData` option.
*/
buildId?: string;
/**
* If there was a locale in the pathname, this will hold its value.
*/
locale?: string;
/**
* The processed pathname without a base path, locale, or data URL elements
* when parsing it is enabled.
*/
pathname: string;
/**
* A boolean telling if the pathname had a trailingSlash. This can be only
* true if trailingSlash is enabled.
*/
trailingSlash?: boolean;
}
interface Options {
/**
* When passed to true, this function will also parse Nextjs data URLs.
*/
parseData?: boolean;
/**
* A partial of the Next.js configuration to parse the URL.
*/
nextConfig?: {
basePath?: string;
i18n?: {
locales?: readonly string[];
} | null;
trailingSlash?: boolean;
};
/**
* If provided, this normalizer will be used to detect the locale instead of
* the default locale detection.
*/
i18nProvider?: I18NProvider;
}
export declare function getNextPathnameInfo(pathname: string, options: Options): NextPathnameInfo;
export {};