Rocky_Mountain_Vending/.pnpm-store/v10/files/93/6c42db66d20d5251706ac02ee36457af5a1083a1583d5e573f119dfdd8bd4be78dd79290967a03bba31937f87fd9f6bec78414704de26373c0e44350f4a94f
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
227 B
Text

import type { Normalizer } from './normalizer';
/**
* UnderscoreNormalizer replaces all instances of %5F with _.
*/
export declare class UnderscoreNormalizer implements Normalizer {
normalize(pathname: string): string;
}