Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/0104d91c713288f165a05eae7e7881dc7be6e171ecad9686f657dcc321b167d4b346f39ff697345ba5578c1c1d45dbb31c99689681a7265e386a74fa0cfc37
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

10 lines
380 B
Text

import { Normalizers } from '../../normalizers';
import type { Normalizer } from '../../normalizer';
export declare class AppPathnameNormalizer extends Normalizers {
constructor();
normalize(page: string): string;
}
export declare class DevAppPathnameNormalizer extends Normalizers {
constructor(pageNormalizer: Normalizer);
normalize(filename: string): string;
}