Files
cartlog-admin/node_modules/next/dist/shared/lib/router/utils/interception-routes.d.ts
2026-01-01 15:25:19 +05:30

7 lines
312 B
TypeScript

export declare const INTERCEPTION_ROUTE_MARKERS: readonly ["(..)(..)", "(.)", "(..)", "(...)"];
export declare function isInterceptionRouteAppPath(path: string): boolean;
export declare function extractInterceptionRouteInformation(path: string): {
interceptingRoute: string;
interceptedRoute: string;
};