An event published by a Router when a route loading was aborted.

interface AbortedEvent {
    controller: RouteController<any, any, any>;
    type: "aborted";
}

Properties

Properties

controller: RouteController<any, any, any>

A controller from which an event originates.

type