On this page
UrlMatchResult
type-alias
Represents the result of matching URLs with a custom matching function.
type UrlMatchResult = {
    consumed: UrlSegment[];
    posParams?: {
        [name: string]: UrlSegment;
    };
};
   See also
Description
consumedis an array of the consumed URL segments.posParamsis a map of positional parameters.
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v14.angular.io/api/router/UrlMatchResult