bc-payments-sdk
Version:
BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.
19 lines (18 loc) • 579 B
TypeScript
/**
* Enum {RequestMethod} provides a list of HTTP request methods.
*
* @ordinal {string} POST - The HTTP POST request method.
* @ordinal {string} GET - The HTTP GET request method.
* @ordinal {string} HEAD - The HTTP HEAD request method.
* @ordinal {string} PUT - The HTTP PUT request method.
* @ordinal {string} PATCH - The HTTP PATCH request method.
* @ordinal {string} DELETE - The HTTP DELETE request method.
*/
export declare enum RequestMethod {
POST = "POST",
GET = "GET",
HEAD = "HEAD",
PUT = "PUT",
PATCH = "PATCH",
DELETE = "DELETE"
}