Rocky_Mountain_Vending/.pnpm-store/v10/files/76/ce04ba491062286eb9dd06f4d64d255ac27e975088f35bec6c8046459d3dbc8b10e6c65c8e96926aec062ba6866bde6c9920d81131dfbfef6741db8b95ea6b
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

7 lines
401 B
Text

import type { PagesAPIRouteDefinition } from '../route-definitions/pages-api-route-definition';
import { LocaleRouteMatcher } from './locale-route-matcher';
import { RouteMatcher } from './route-matcher';
export declare class PagesAPIRouteMatcher extends RouteMatcher<PagesAPIRouteDefinition> {
}
export declare class PagesAPILocaleRouteMatcher extends LocaleRouteMatcher<PagesAPIRouteDefinition> {
}