Rocky_Mountain_Vending/.pnpm-store/v10/files/6e/4c797744f08e6c654425de34d0e1fae674e22c5b79998cc5c25df08e2abefb3938c7f34e89e4284bf1be6f6c9c015ff6e82fa21221a1e9e667d8f1b99a7dd6
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

6 lines
238 B
Text

import type { Normalizer } from './normalizer';
export declare class PrefixingNormalizer implements Normalizer {
private readonly prefix;
constructor(...prefixes: ReadonlyArray<string>);
normalize(pathname: string): string;
}