Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/0a06e51086d26a4dabd60505c867e3514d578d4c84d8ea472601a2cac0038e8d350b854a4dd89828af74b4fd9f514a7a7f74259cc42633ae38e9b92d43079e
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

10 lines
884 B
Text

import type { FlightRouterState, Segment } from './app-router-types';
export declare function getSegmentValue(segment: Segment): string;
export declare function isGroupSegment(segment: string): boolean;
export declare function isParallelRouteSegment(segment: string): boolean;
export declare function addSearchParamsIfPageSegment(segment: Segment, searchParams: Record<string, string | string[] | undefined>): Segment;
export declare function computeSelectedLayoutSegment(segments: string[] | null, parallelRouteKey: string): string | null;
/** Get the canonical parameters from the current level to the leaf node. */
export declare function getSelectedLayoutSegmentPath(tree: FlightRouterState, parallelRouteKey: string, first?: boolean, segmentPath?: string[]): string[];
export declare const PAGE_SEGMENT_KEY = "__PAGE__";
export declare const DEFAULT_SEGMENT_KEY = "__DEFAULT__";