An event published by a Router after a navigation occurs.

interface NavigateEvent {
    controller: null | RouteController<any, any, any>;
    isIntercepted: boolean;
    location: Location;
    router: Router<any>;
    type: "navigate";
}

Properties

controller: null | RouteController<any, any, any>

The root controller to which router was navigated, or null if no matching route was found.

isIntercepted: boolean

true if the controller rendering was intercepted.

location: Location

A location to which a router was navigated.

router: Router<any>

A router from which an event originates.

type

The event type.