UNPKG

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