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>
9 lines
344 B
Text
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;
|
|
}
|