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