type HttpVerb = "get" | "post" | "put" | "patch" | "delete" | "options" | "head"; type HttpMethodInput = HttpVerb | Uppercase | (string & {}); export type { HttpMethodInput as H };