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

    Interface NavigateEvent

    An event published by a Router after a navigation occurs.

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

    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

    A router from which an event originates.

    type: "navigate"

    The event type.