Type Alias HTTPMethod

HTTPMethod:
    | "GET"
    | "POST"
    | "PUT"
    | "DELETE"
    | "PATCH"
    | "OPTIONS"
    | "HEAD"
    | "CONNECT"
    | "TRACE"
    | "ALL"

HTTP methods supported by the server.