export declare enum MappingRecordType { CNAME = "CNAME", ALIAS = "ALIAS" } /** * Fixed response codes */ export declare enum HttpFixedResponse { /** * OK 200 */ OK = 200, /** * Created 201 */ CREATED = 201, /** * Accepted */ ACCEPTED = 202, /** * No Content 204 */ NO_CONTENT = 204, /** * Not Found 404 */ NOT_FOUND = 404, /** * Internal server error 500 */ INTERNAL_SERVER_ERROR = 500 } /** * HTTP Methods */ export declare enum HttpMethod { /** * GET Method */ GET = "GET", /** * POST Method */ POST = "POST", /** * PUT Method */ PUT = "PUT", /** * Delete Method */ DELETE = "DELETE", /** * PATCH Method */ PATCH = "PATCH", /** * Head Method */ HEAD = "HEAD", /** * Connect Method */ CONNECT = "CONNECT", /** * Options Method */ OPTIONS = "OPTIONS", /** * Trace Method */ TRACE = "TRACE" }