Skip to content

MatchedRoute type

Home > @rimitive/router > MatchedRoute

A matched route with its extracted parameters

Signature:

export type MatchedRoute = {
id: string;
pattern: string;
params: Record<string, string>;
path: string;
};