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

    Interface ErrorEvent

    An event published by a Router when an error was thrown by a component or by a data loader.

    interface ErrorEvent {
        controller: null | RouteController<any, any, any>;
        error: any;
        type: "error";
    }
    Index

    Properties

    Properties

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

    A controller from which an event originates.

    error: any

    An error that was thrown.

    type: "error"

    The event type.