bc-clearpay-sdk
Version:
BetterCommerce's ClearPay NodeJS SDK enables BC client applications to integrate with ClearPay merchant API system. It publishes an interface to interact with [ClearPay API v2](https://developers.clearpay.co.uk/clearpay-online/reference) endpoints.
19 lines (18 loc) • 527 B
TypeScript
/**
* Enum representing HTTP request methods.
*
* @ordinal {string} POST - The HTTP POST method.
* @ordinal {string} GET - The HTTP GET method.
* @ordinal {string} HEAD - The HTTP HEAD method.
* @ordinal {string} PUT - The HTTP PUT method.
* @ordinal {string} PATCH - The HTTP PATCH method.
* @ordinal {string} DELETE - The HTTP DELETE method.
*/
export declare enum RequestMethod {
POST = "POST",
GET = "GET",
HEAD = "HEAD",
PUT = "PUT",
PATCH = "PATCH",
DELETE = "DELETE"
}