Types: ResolvedRoute<TRoute> 
ts
type ResolvedRoute<TRoute> = Readonly<{
  hash: string;
  href: Url;
  id: TRoute["id"];
  matched: TRoute["matched"];
  matches: TRoute["matches"];
  name: TRoute["name"];
  params: ExtractRouteParamTypesReading<TRoute>;
  query: URLSearchParams;
  state: ExtractRouteStateParamsAsOptional<TRoute["state"]>;
}>;Represents a route that the router has matched to current browser location.
Type Parameters 
| Type Parameter | Default type | Description | 
|---|---|---|
TRoute extends Route | Route | Underlying Route that has been resolved. |