makearmy-app/node_modules/next/dist/shared/lib/router/utils/interception-routes.d.ts

7 lines
312 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
export declare const INTERCEPTION_ROUTE_MARKERS: readonly ["(..)(..)", "(.)", "(..)", "(...)"];
export declare function isInterceptionRouteAppPath(path: string): boolean;
export declare function extractInterceptionRouteInformation(path: string): {
interceptingRoute: string;
interceptedRoute: string;
};