Rocky_Mountain_Vending/.pnpm-store/v10/files/6f/1a96a22973c51d88b5f5e9ea7ae5427dc9a486e678c5e111be7707736880c280928bb5cf2ca8dd4fbdb131ed8b2e8d35f12290ae0b115d97cd6c42f7c56f78
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
353 B
Text

import type { PathnameNormalizer } from './pathname-normalizer';
import { SuffixPathnameNormalizer } from './suffix';
export declare class PrefetchRSCPathnameNormalizer extends SuffixPathnameNormalizer implements PathnameNormalizer {
constructor();
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}