Interface IControllerInitializedEventArguments

Options for the first argument of a ControllerInitializedEventHandler.

interface IControllerInitializedEventArguments {
    app: IHttpServer;
    controller: any;
    controllerClass: Constructor<any>;
    fullPath: string;
    relativePath: string;
}

Properties

The underlying server instance.

controller: any

The underlying controller instance.

controllerClass: Constructor<any>

The class of instance in controller.

fullPath: string

The full path of the underlying file.

relativePath: string

The relative path of the underlying file.

Generated using TypeDoc