wilddragon-site/node_modules/next/dist/server/normalizers/request/next-data.d.ts
2026-04-17 15:51:01 -04:00

8 lines
337 B
TypeScript
Executable file

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