@tempots/ui
MatchResultWithRoute type
The result of a route match with the matched route.
Signature:
export type MatchResultWithRoute<P extends string, R extends string> = {
params: ExtractParams<P>;
route: R;
path: P;
} | null;
References: ExtractParams