/** * 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" }