blob: 4cdfe61c8ec42c76f927836da14e6a79de09cc23 [file] [log] [blame]
/**
* HTTP Verb supported by GitHub's REST API
*/
export type RequestMethod = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT";