Help Angular by taking a 1 minute survey!Go to surveyHome

UrlMatchResult

Represents the result of matching URLs with a custom matching function.

See more...

type UrlMatchResult = { consumed: UrlSegment[]; posParams?: { [name: string]: UrlSegment; }; };
      
      type UrlMatchResult = {
    consumed: UrlSegment[];
    posParams?: {
        [name: string]: UrlSegment;
    };
};
    

See also

Description

  • consumed is an array of the consumed URL segments.
  • posParams is a map of positional parameters.