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

    Interface RedirectEvent

    An event published by a Router when a redirect was called from a component or a data loader.

    interface RedirectEvent {
        controller: null | RouteController<any, any, any>;
        to: string | To;
        type: "redirect";
    }
    Index

    Properties

    Properties

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

    A controller from which an event originates.

    to: string | To

    A location or a URL to which a redirect should be made.

    type: "redirect"

    The event type.