Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/6dcfb66f7abac8bff74b9134f5e62a0ea4441c3006b073ba6b15b37bda6afcb9ab183ceaebf461d1e33b4f70ce9a05a7affe6ef7dfcb526f3e83f9eb5260a9
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

11 lines
384 B
Text

import type { Group } from './route-regex';
import type { Params } from '../../../../server/request/params';
export interface RouteMatchFn {
(pathname: string): false | Params;
}
type RouteMatcherOptions = {
re: Pick<RegExp, 'exec'>;
groups: Record<string, Group>;
};
export declare function getRouteMatcher({ re, groups, }: RouteMatcherOptions): RouteMatchFn;
export {};