makearmy-app/node_modules/next/dist/server/normalizers/request/prefix.d.ts

8 lines
281 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
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;
}