UrlMatchResult
Represents the results of the URL matching.
type UrlMatchResult = {
consumed: UrlSegment[];
posParams?: {
[name: string]: UrlSegment;
};
};
Description
consumed
is an array of the consumed URL segments.posParams
is a map of positional parameters.