UNPKG

974 BJavaScriptView Raw
1/**
2 * -------------------------------------------------------------------------------------------
3 * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4 * See License in the project root for license information.
5 * -------------------------------------------------------------------------------------------
6 */
7/**
8 * @enum
9 * Enum for RequestMethods
10 * @property {string} GET - The get request type
11 * @property {string} PATCH - The patch request type
12 * @property {string} POST - The post request type
13 * @property {string} PUT - The put request type
14 * @property {string} DELETE - The delete request type
15 */
16export var RequestMethod;
17(function (RequestMethod) {
18 RequestMethod["GET"] = "GET";
19 RequestMethod["PATCH"] = "PATCH";
20 RequestMethod["POST"] = "POST";
21 RequestMethod["PUT"] = "PUT";
22 RequestMethod["DELETE"] = "DELETE";
23})(RequestMethod || (RequestMethod = {}));
24//# sourceMappingURL=RequestMethod.js.map
\No newline at end of file