wilddragon-site/node_modules/next/dist/server/normalizers/request/suffix.d.ts

8 lines
281 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
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;
}