makearmy-app/node_modules/next/dist/server/normalizers/request/prefetch-rsc.d.ts
2025-09-22 10:37:53 -04:00

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