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

interface NotFoundEvent {
    controller: RouteController<any, any, any>;
    type: "not_found";
}

Properties

Properties

controller: RouteController<any, any, any>

A controller from which an event originates.

type

The event type.