Files
Webklar.com/node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
279 B
TypeScript

import type { RouteRegex } from './route-regex';
export interface RouteMatchFn {
(pathname: string | null | undefined): false | Params;
}
export interface Params {
[param: string]: any;
}
export declare function getRouteMatcher({ re, groups }: RouteRegex): RouteMatchFn;