Rocky_Mountain_Vending/.pnpm-store/v10/files/36/1280d39da91a318d49dbc05b616a6868f659425549b3384a213ecf81c84ee5fbfe4441d195de347998dd46b069f328aedd3bff83ab3c2a4fb4ee295e37103e
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

19 lines
761 B
Text

import type { DynamicPrerenderManifestRoute, PrerenderManifest } from '../../../../build';
import type { DeepReadonly } from '../../../../shared/lib/deep-readonly';
/**
* A matcher for the prerender manifest.
*
* This class is used to match the pathname to the dynamic route.
*/
export declare class PrerenderManifestMatcher {
private readonly matchers;
constructor(pathname: string, prerenderManifest: DeepReadonly<PrerenderManifest>);
/**
* Match the pathname to the dynamic route. If no match is found, an error is
* thrown.
*
* @param pathname - The pathname to match.
* @returns The dynamic route that matches the pathname.
*/
match(pathname: string): DeepReadonly<DynamicPrerenderManifestRoute> | null;
}