@microsoft/kiota-abstractions
Version:
Core abstractions for kiota generated libraries in TypeScript and JavaScript
31 lines • 1.14 kB
JavaScript
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
/**
* Represents the HTTP method used by a request.
*/
export var HttpMethod;
(function (HttpMethod) {
/** The HTTP GET method */
HttpMethod["GET"] = "GET";
/** The HTTP POST method */
HttpMethod["POST"] = "POST";
/** The HTTP PATCH method */
HttpMethod["PATCH"] = "PATCH";
/** The HTTP DELETE method */
HttpMethod["DELETE"] = "DELETE";
/** The HTTP OPTIONS method */
HttpMethod["OPTIONS"] = "OPTIONS";
/** The HTTP CONNECT method */
HttpMethod["CONNECT"] = "CONNECT";
/** The HTTP TRACE method */
HttpMethod["TRACE"] = "TRACE";
/** The HTTP HEAD method */
HttpMethod["HEAD"] = "HEAD";
/** The HTTP PUT method */
HttpMethod["PUT"] = "PUT";
})(HttpMethod || (HttpMethod = {}));
//# sourceMappingURL=httpMethod.js.map