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