Rocky_Mountain_Vending/.pnpm-store/v10/files/37/78b7d826f72dd9b57db4d2571ea660bd0ba53ddfcae8c66f5b13c0a8c01033fcedae253f237408cd7021e4e154c03a0d0adba477dab9c2e4a0e9c6b4e1f107
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

9 lines
344 B
Text

import type { PathnameNormalizer } from './pathname-normalizer';
export declare class SegmentPrefixRSCPathnameNormalizer implements PathnameNormalizer {
match(pathname: string): boolean;
extract(pathname: string): {
originalPathname: string;
segmentPath: string;
} | null;
normalize(pathname: string): string;
}