Rocky_Mountain_Vending/.pnpm-store/v10/files/38/c0d551de888856f872d6d30c6bf4897ce6dd52fdb65e0bd39ff5ade5b5a8a814651df57fd435a11d152527343880f1121c13b565ab3f0539fb9626a9c5cb17
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

8 lines
316 B
Text

/**
* Check if a route is dynamic.
*
* @param route - The route to check.
* @param strict - Whether to use strict mode which prohibits segments with prefixes/suffixes (default: true).
* @returns Whether the route is dynamic.
*/
export declare function isDynamicRoute(route: string, strict?: boolean): boolean;