linkUrlMatchResult
npm Package | @angular/router |
---|---|
Module | import { UrlMatchResult } from '@angular/router'; |
Source | router/src/config.ts |
Represents the results of the URL matching.
consumed
is an array of the consumed URL segments.posParams
is a map of positional parameters.
type UrlMatchResult = {
consumed: UrlSegment[];
posParams?: {
[name: string]: UrlSegment;
};
};