Type Alias HttpServerErrorStatus

HttpServerErrorStatus:
    | "500"
    | "501"
    | "502"
    | "503"
    | "504"
    | "505"
    | "506"
    | "507"
    | "508"
    | "509"
    | "510"
    | "511"

HTTP server error status codes (5xx). Indicates that the server failed to fulfill a valid request.

IMPORT_PATH: "@daiso-tech/core/http-router/contracts"