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

export type { HttpMethodInput as H };
