NeahNew/node_modules/next/dist/server/normalizers/request/prefetch-rsc.d.ts
2025-05-03 14:17:46 +02:00

8 lines
353 B
TypeScript

import type { PathnameNormalizer } from './pathname-normalizer';
import { SuffixPathnameNormalizer } from './suffix';
export declare class PrefetchRSCPathnameNormalizer extends SuffixPathnameNormalizer implements PathnameNormalizer {
constructor();
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}