Neah/node_modules/next/dist/server/normalizers/request/prefix.d.ts
2025-04-24 17:19:14 +02:00

8 lines
281 B
TypeScript

import type { Normalizer } from '../normalizer';
export declare class PrefixPathnameNormalizer implements Normalizer {
private readonly prefix;
constructor(prefix: string);
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}