Files
cartlog-admin/node_modules/next/dist/server/normalizers/request/next-data.d.ts
2026-01-01 15:25:19 +05:30

9 lines
337 B
TypeScript

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