Interface IControllersResult

Result of an IHttpServer.controllers() call.

interface IControllersResult {
    app: IHttpServer;
    documentation: Document<{}>;
    isSwaggerUIEnabled: boolean;
    methods: IControllerMethodInfo[];
    getTests(options?): Promise<IHttpControllerTest[]>;
}

Properties

The underlying app / server.

documentation: Document<{}>

The swagger documentation.

Type declaration

    isSwaggerUIEnabled: boolean

    Indicates if Swagger UI is enabled or not.

    Controller methods.

    Methods

    Generated using TypeDoc