HttpMethod type

Possible values for an HTTP request method.

type HttpMethod =
  | "GET"
  | "POST"
  | "DELETE"
  | "HEAD"
  | "PATCH"
  | "PUT"
  | "OPTIONS"
  | "TRACE"
  | "CONNECT"