UNPKG

134 BTypeScriptView Raw
1/**
2 * HTTP Verb supported by GitHub's REST API
3 */
4export type RequestMethod = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT";