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

9 lines
337 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
import type { PathnameNormalizer } from './pathname-normalizer';
export declare class NextDataPathnameNormalizer implements PathnameNormalizer {
private readonly prefix;
private readonly suffix;
constructor(buildID: string);
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}