Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/bb94ae423b65f6071e320ccfa250915ed3b07a738d8c437adc0043d898db5df6e367b3664a373eae822f869471b1e75d0dc72c6d7c63256318ea062520af04
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

13 lines
494 B
Text

import type { DynamicParamTypes } from '../../app-router-types';
/**
* Parse dynamic route segment to type of parameter
*/
export declare function getSegmentParam(segment: string): {
param: string;
type: DynamicParamTypes;
} | null;
export declare function isCatchAll(type: DynamicParamTypes): type is 'catchall' | 'catchall-intercepted' | 'optional-catchall';
export declare function getParamProperties(paramType: DynamicParamTypes): {
repeat: boolean;
optional: boolean;
};