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 | */
|
16 | export declare enum RequestMethod {
|
17 | GET = "GET",
|
18 | PATCH = "PATCH",
|
19 | POST = "POST",
|
20 | PUT = "PUT",
|
21 | DELETE = "DELETE"
|
22 | }
|