Rocky_Mountain_Vending/.pnpm-store/v10/files/b1/f21497a70bf9fd2e4792aa30aab9c7ac6ccac45248ab635b60d6b1d264875eb067bae8cc39a983519f36ab81404b0d2af8fd672473e83e0ef7fbff796a9d29
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
281 B
Text

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