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