Files
scrap/node_modules/next/dist/server/future/helpers/interception-routes.d.ts
2024-09-24 03:52:46 +00:00

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