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>
11 lines
432 B
Text
11 lines
432 B
Text
import type { Normalizer } from './normalizer';
|
|
/**
|
|
* Normalizers combines many normalizers into a single normalizer interface that
|
|
* will normalize the inputted pathname with each normalizer in order.
|
|
*/
|
|
export declare class Normalizers implements Normalizer {
|
|
private readonly normalizers;
|
|
constructor(normalizers?: Array<Normalizer>);
|
|
push(normalizer: Normalizer): void;
|
|
normalize(pathname: string): string;
|
|
}
|