Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/f975c8293d0bd3bc5205f7618bd0e0e1e7f4f022ebfd8f48a83c2854fefff7b888e641dde23852aeb07471ff545c4c07c2a1c99658de12e724071353bb0e14
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

15 lines
640 B
Text

import type { Params } from '../request/params';
import type { RouteDefinition } from '../route-definitions/route-definition';
/**
* RouteMatch is the resolved match for a given request. This will contain all
* the dynamic parameters used for this route.
*/
export interface RouteMatch<D extends RouteDefinition = RouteDefinition> {
readonly definition: D;
/**
* params when provided are the dynamic route parameters that were parsed from
* the incoming request pathname. If a route match is returned without any
* params, it should be considered a static route.
*/
readonly params: Params | undefined;
}