zibri
    Preparing search index...

    Type Alias HtmlOpenApiResponse

    Descriptor for an HTML response:

    • type: 'html'
    • optional HTTP status and description.
    type HtmlOpenApiResponse = {
        description?: string;
        status?: HttpStatus;
        type: "html";
    }
    Index

    Properties

    description?: string

    Human-readable description of the HTML response.

    status?: HttpStatus

    HTTP status code to use for the HTML response.

    type: "html"

    Constant identifier for an HTML response.