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

10 lines
344 B
TypeScript

import type { PathnameNormalizer } from './pathname-normalizer';
export declare class SegmentPrefixRSCPathnameNormalizer implements PathnameNormalizer {
match(pathname: string): boolean;
extract(pathname: string): {
originalPathname: string;
segmentPath: string;
} | null;
normalize(pathname: string): string;
}