React Corsair - v0.0.11
    Preparing search index...

    Interface NavigateEvent

    An event published by a Router after a navigation occurs.

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

    Properties

    controller: RouteController

    The controller to which router was navigated.

    isIntercepted: boolean

    true if the controller rendering was intercepted.

    location: Location

    A location to which a router was navigated.

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

    The controller from which router was navigated to another controller. This can be null if a route navigation was intercepted but there is no rendered intercepted route.

    prevLocation: Location

    A location from which a router was navigated to a location.

    type: "navigate"

    The event type.