/** * HTTP Verb supported by GitHub's REST API */ export type RequestMethod = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT";