An event triggered at the end of the Guard phase of routing.
API
class GuardsCheckEnd extends RouterEvent {
constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot, shouldActivate: boolean): GuardsCheckEnd;
readonly type: EventType.GuardsCheckEnd;
override urlAfterRedirects: string;
override state: RouterStateSnapshot;
override shouldActivate: boolean;
override id: number;
override url: string;
}
constructor
GuardsCheckEnd
@paramid
number
@paramurl
string
@paramurlAfterRedirects
string
@paramshouldActivate
boolean
@returns
GuardsCheckEnd
urlAfterRedirects
stringstate
RouterStateSnapshotshouldActivate
booleanid
numberA unique ID that the router assigns to every router navigation.
url
stringThe URL that is the destination for this navigation.