@sap/odata-v4
Version:
OData V4.0 server library
27 lines (23 loc) • 333 B
JavaScript
;
/**
* The HTTP methods.
* @hideconstructor
*/
class HttpMethod {
}
/**
* HTTP methods
*
* @enum {string}
* @readonly
*/
HttpMethod.Methods = {
DELETE: 'DELETE',
HEAD: 'HEAD',
OPTIONS: 'OPTIONS',
GET: 'GET',
PATCH: 'PATCH',
POST: 'POST',
PUT: 'PUT'
};
module.exports = HttpMethod;