Represents the result of matching URLs with a custom matching function.
API
type UrlMatchResult = {
consumed: UrlSegment[];
posParams?: {[name: string]: UrlSegment};
}
Description
Represents the result of matching URLs with a custom matching function.
-
consumedis an array of the consumed URL segments. -
posParamsis a map of positional parameters.