zibri
    Preparing search index...

    Type Alias ErrorOpenApiResponse

    Descriptor for an error response:

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

    Properties

    description?: string

    Human-readable description of the error.

    status?: HttpStatus

    HTTP status code to use for the error response.

    type: "error"

    Constant identifier for an error response.