NeahNew/node_modules/next/dist/server/normalizers/request/suffix.d.ts
2025-05-03 14:17:46 +02:00

8 lines
281 B
TypeScript

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;
}