Dmitriy Pleshevskiy
49aac94675
chore: add dist folder to repo chore(deps): add node-fetch for tests chore: change prepare request visibility chore: add tests for prepare request method chore: update example Closes #20
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
export var Method;
|
|
(function (Method) {
|
|
Method["HEAD"] = "HEAD";
|
|
Method["GET"] = "GET";
|
|
Method["PUT"] = "PUT";
|
|
Method["POST"] = "POST";
|
|
Method["PATCH"] = "PATCH";
|
|
Method["DELETE"] = "DELETE";
|
|
})(Method || (Method = {}));
|