/** * Descriptive HTTP status codes, for code readability. * See RFC 2616 - https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html * And RFC 6585 - https://tools.ietf.org/html/rfc6585 * And RFC 4918 - https://tools.ietf.org/html/rfc4918 */ declare const isInformational: (code: number) => boolean; declare const isSuccess: (code: number) => boolean; declare const isRedirect: (code: number) => boolean; declare const isClientError: (code: number) => boolean; declare const isServerError: (code: number) => boolean; declare const HTTP_100_CONTINUE = 100; declare const HTTP_101_SWITCHING_PROTOCOLS = 101; declare const HTTP_200_OK = 200; declare const HTTP_201_CREATED = 201; declare const HTTP_202_ACCEPTED = 202; declare const HTTP_203_NON_AUTHORITATIVE_INFORMATION = 203; declare const HTTP_204_NO_CONTENT = 204; declare const HTTP_205_RESET_CONTENT = 205; declare const HTTP_206_PARTIAL_CONTENT = 206; declare const HTTP_207_MULTI_STATUS = 207; declare const HTTP_208_ALREADY_REPORTED = 208; declare const HTTP_226_IM_USED = 226; declare const HTTP_300_MULTIPLE_CHOICES = 300; declare const HTTP_301_MOVED_PERMANENTLY = 301; declare const HTTP_302_FOUND = 302; declare const HTTP_303_SEE_OTHER = 303; declare const HTTP_304_NOT_MODIFIED = 304; declare const HTTP_305_USE_PROXY = 305; declare const HTTP_306_RESERVED = 306; declare const HTTP_307_TEMPORARY_REDIRECT = 307; declare const HTTP_308_PERMANENT_REDIRECT = 308; declare const HTTP_400_BAD_REQUEST = 400; declare const HTTP_401_UNAUTHORIZED = 401; declare const HTTP_402_PAYMENT_REQUIRED = 402; declare const HTTP_403_FORBIDDEN = 403; declare const HTTP_404_NOT_FOUND = 404; declare const HTTP_405_METHOD_NOT_ALLOWED = 405; declare const HTTP_406_NOT_ACCEPTABLE = 406; declare const HTTP_407_PROXY_AUTHENTICATION_REQUIRED = 407; declare const HTTP_408_REQUEST_TIMEOUT = 408; declare const HTTP_409_CONFLICT = 409; declare const HTTP_410_GONE = 410; declare const HTTP_411_LENGTH_REQUIRED = 411; declare const HTTP_412_PRECONDITION_FAILED = 412; declare const HTTP_413_REQUEST_ENTITY_TOO_LARGE = 413; declare const HTTP_414_REQUEST_URI_TOO_LONG = 414; declare const HTTP_415_UNSUPPORTED_MEDIA_TYPE = 415; declare const HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE = 416; declare const HTTP_417_EXPECTATION_FAILED = 417; declare const HTTP_418_IM_A_TEAPOT = 418; declare const HTTP_422_UNPROCESSABLE_ENTITY = 422; declare const HTTP_423_LOCKED = 423; declare const HTTP_424_FAILED_DEPENDENCY = 424; declare const HTTP_426_UPGRADE_REQUIRED = 426; declare const HTTP_428_PRECONDITION_REQUIRED = 428; declare const HTTP_429_TOO_MANY_REQUESTS = 429; declare const HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE = 431; declare const HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS = 451; declare const HTTP_500_INTERNAL_SERVER_ERROR = 500; declare const HTTP_501_NOT_IMPLEMENTED = 501; declare const HTTP_502_BAD_GATEWAY = 502; declare const HTTP_503_SERVICE_UNAVAILABLE = 503; declare const HTTP_504_GATEWAY_TIMEOUT = 504; declare const HTTP_505_HTTP_VERSION_NOT_SUPPORTED = 505; declare const HTTP_506_VARIANT_ALSO_NEGOTIATES = 506; declare const HTTP_507_INSUFFICIENT_STORAGE = 507; declare const HTTP_508_LOOP_DETECTED = 508; declare const HTTP_509_BANDWIDTH_LIMIT_EXCEEDED = 509; declare const HTTP_510_NOT_EXTENDED = 510; declare const HTTP_511_NETWORK_AUTHENTICATION_REQUIRED = 511; type StatusCodes = typeof HTTP_100_CONTINUE | typeof HTTP_101_SWITCHING_PROTOCOLS | typeof HTTP_200_OK | typeof HTTP_201_CREATED | typeof HTTP_202_ACCEPTED | typeof HTTP_203_NON_AUTHORITATIVE_INFORMATION | typeof HTTP_204_NO_CONTENT | typeof HTTP_205_RESET_CONTENT | typeof HTTP_206_PARTIAL_CONTENT | typeof HTTP_207_MULTI_STATUS | typeof HTTP_208_ALREADY_REPORTED | typeof HTTP_226_IM_USED | typeof HTTP_300_MULTIPLE_CHOICES | typeof HTTP_301_MOVED_PERMANENTLY | typeof HTTP_302_FOUND | typeof HTTP_303_SEE_OTHER | typeof HTTP_304_NOT_MODIFIED | typeof HTTP_305_USE_PROXY | typeof HTTP_306_RESERVED | typeof HTTP_307_TEMPORARY_REDIRECT | typeof HTTP_308_PERMANENT_REDIRECT | typeof HTTP_400_BAD_REQUEST | typeof HTTP_401_UNAUTHORIZED | typeof HTTP_402_PAYMENT_REQUIRED | typeof HTTP_403_FORBIDDEN | typeof HTTP_404_NOT_FOUND | typeof HTTP_405_METHOD_NOT_ALLOWED | typeof HTTP_406_NOT_ACCEPTABLE | typeof HTTP_407_PROXY_AUTHENTICATION_REQUIRED | typeof HTTP_408_REQUEST_TIMEOUT | typeof HTTP_409_CONFLICT | typeof HTTP_410_GONE | typeof HTTP_411_LENGTH_REQUIRED | typeof HTTP_412_PRECONDITION_FAILED | typeof HTTP_413_REQUEST_ENTITY_TOO_LARGE | typeof HTTP_414_REQUEST_URI_TOO_LONG | typeof HTTP_415_UNSUPPORTED_MEDIA_TYPE | typeof HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE | typeof HTTP_417_EXPECTATION_FAILED | typeof HTTP_418_IM_A_TEAPOT | typeof HTTP_422_UNPROCESSABLE_ENTITY | typeof HTTP_423_LOCKED | typeof HTTP_424_FAILED_DEPENDENCY | typeof HTTP_426_UPGRADE_REQUIRED | typeof HTTP_428_PRECONDITION_REQUIRED | typeof HTTP_429_TOO_MANY_REQUESTS | typeof HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE | typeof HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS | typeof HTTP_500_INTERNAL_SERVER_ERROR | typeof HTTP_501_NOT_IMPLEMENTED | typeof HTTP_502_BAD_GATEWAY | typeof HTTP_503_SERVICE_UNAVAILABLE | typeof HTTP_504_GATEWAY_TIMEOUT | typeof HTTP_505_HTTP_VERSION_NOT_SUPPORTED | typeof HTTP_506_VARIANT_ALSO_NEGOTIATES | typeof HTTP_507_INSUFFICIENT_STORAGE | typeof HTTP_508_LOOP_DETECTED | typeof HTTP_509_BANDWIDTH_LIMIT_EXCEEDED | typeof HTTP_510_NOT_EXTENDED | typeof HTTP_511_NETWORK_AUTHENTICATION_REQUIRED; type RedirectionStatusCodes = typeof HTTP_300_MULTIPLE_CHOICES | typeof HTTP_301_MOVED_PERMANENTLY | typeof HTTP_302_FOUND | typeof HTTP_303_SEE_OTHER | typeof HTTP_304_NOT_MODIFIED | typeof HTTP_305_USE_PROXY | typeof HTTP_306_RESERVED | typeof HTTP_307_TEMPORARY_REDIRECT | typeof HTTP_308_PERMANENT_REDIRECT; declare const status_HTTP_100_CONTINUE: typeof HTTP_100_CONTINUE; declare const status_HTTP_101_SWITCHING_PROTOCOLS: typeof HTTP_101_SWITCHING_PROTOCOLS; declare const status_HTTP_200_OK: typeof HTTP_200_OK; declare const status_HTTP_201_CREATED: typeof HTTP_201_CREATED; declare const status_HTTP_202_ACCEPTED: typeof HTTP_202_ACCEPTED; declare const status_HTTP_203_NON_AUTHORITATIVE_INFORMATION: typeof HTTP_203_NON_AUTHORITATIVE_INFORMATION; declare const status_HTTP_204_NO_CONTENT: typeof HTTP_204_NO_CONTENT; declare const status_HTTP_205_RESET_CONTENT: typeof HTTP_205_RESET_CONTENT; declare const status_HTTP_206_PARTIAL_CONTENT: typeof HTTP_206_PARTIAL_CONTENT; declare const status_HTTP_207_MULTI_STATUS: typeof HTTP_207_MULTI_STATUS; declare const status_HTTP_208_ALREADY_REPORTED: typeof HTTP_208_ALREADY_REPORTED; declare const status_HTTP_226_IM_USED: typeof HTTP_226_IM_USED; declare const status_HTTP_300_MULTIPLE_CHOICES: typeof HTTP_300_MULTIPLE_CHOICES; declare const status_HTTP_301_MOVED_PERMANENTLY: typeof HTTP_301_MOVED_PERMANENTLY; declare const status_HTTP_302_FOUND: typeof HTTP_302_FOUND; declare const status_HTTP_303_SEE_OTHER: typeof HTTP_303_SEE_OTHER; declare const status_HTTP_304_NOT_MODIFIED: typeof HTTP_304_NOT_MODIFIED; declare const status_HTTP_305_USE_PROXY: typeof HTTP_305_USE_PROXY; declare const status_HTTP_306_RESERVED: typeof HTTP_306_RESERVED; declare const status_HTTP_307_TEMPORARY_REDIRECT: typeof HTTP_307_TEMPORARY_REDIRECT; declare const status_HTTP_308_PERMANENT_REDIRECT: typeof HTTP_308_PERMANENT_REDIRECT; declare const status_HTTP_400_BAD_REQUEST: typeof HTTP_400_BAD_REQUEST; declare const status_HTTP_401_UNAUTHORIZED: typeof HTTP_401_UNAUTHORIZED; declare const status_HTTP_402_PAYMENT_REQUIRED: typeof HTTP_402_PAYMENT_REQUIRED; declare const status_HTTP_403_FORBIDDEN: typeof HTTP_403_FORBIDDEN; declare const status_HTTP_404_NOT_FOUND: typeof HTTP_404_NOT_FOUND; declare const status_HTTP_405_METHOD_NOT_ALLOWED: typeof HTTP_405_METHOD_NOT_ALLOWED; declare const status_HTTP_406_NOT_ACCEPTABLE: typeof HTTP_406_NOT_ACCEPTABLE; declare const status_HTTP_407_PROXY_AUTHENTICATION_REQUIRED: typeof HTTP_407_PROXY_AUTHENTICATION_REQUIRED; declare const status_HTTP_408_REQUEST_TIMEOUT: typeof HTTP_408_REQUEST_TIMEOUT; declare const status_HTTP_409_CONFLICT: typeof HTTP_409_CONFLICT; declare const status_HTTP_410_GONE: typeof HTTP_410_GONE; declare const status_HTTP_411_LENGTH_REQUIRED: typeof HTTP_411_LENGTH_REQUIRED; declare const status_HTTP_412_PRECONDITION_FAILED: typeof HTTP_412_PRECONDITION_FAILED; declare const status_HTTP_413_REQUEST_ENTITY_TOO_LARGE: typeof HTTP_413_REQUEST_ENTITY_TOO_LARGE; declare const status_HTTP_414_REQUEST_URI_TOO_LONG: typeof HTTP_414_REQUEST_URI_TOO_LONG; declare const status_HTTP_415_UNSUPPORTED_MEDIA_TYPE: typeof HTTP_415_UNSUPPORTED_MEDIA_TYPE; declare const status_HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE: typeof HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE; declare const status_HTTP_417_EXPECTATION_FAILED: typeof HTTP_417_EXPECTATION_FAILED; declare const status_HTTP_418_IM_A_TEAPOT: typeof HTTP_418_IM_A_TEAPOT; declare const status_HTTP_422_UNPROCESSABLE_ENTITY: typeof HTTP_422_UNPROCESSABLE_ENTITY; declare const status_HTTP_423_LOCKED: typeof HTTP_423_LOCKED; declare const status_HTTP_424_FAILED_DEPENDENCY: typeof HTTP_424_FAILED_DEPENDENCY; declare const status_HTTP_426_UPGRADE_REQUIRED: typeof HTTP_426_UPGRADE_REQUIRED; declare const status_HTTP_428_PRECONDITION_REQUIRED: typeof HTTP_428_PRECONDITION_REQUIRED; declare const status_HTTP_429_TOO_MANY_REQUESTS: typeof HTTP_429_TOO_MANY_REQUESTS; declare const status_HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE: typeof HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE; declare const status_HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS: typeof HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS; declare const status_HTTP_500_INTERNAL_SERVER_ERROR: typeof HTTP_500_INTERNAL_SERVER_ERROR; declare const status_HTTP_501_NOT_IMPLEMENTED: typeof HTTP_501_NOT_IMPLEMENTED; declare const status_HTTP_502_BAD_GATEWAY: typeof HTTP_502_BAD_GATEWAY; declare const status_HTTP_503_SERVICE_UNAVAILABLE: typeof HTTP_503_SERVICE_UNAVAILABLE; declare const status_HTTP_504_GATEWAY_TIMEOUT: typeof HTTP_504_GATEWAY_TIMEOUT; declare const status_HTTP_505_HTTP_VERSION_NOT_SUPPORTED: typeof HTTP_505_HTTP_VERSION_NOT_SUPPORTED; declare const status_HTTP_506_VARIANT_ALSO_NEGOTIATES: typeof HTTP_506_VARIANT_ALSO_NEGOTIATES; declare const status_HTTP_507_INSUFFICIENT_STORAGE: typeof HTTP_507_INSUFFICIENT_STORAGE; declare const status_HTTP_508_LOOP_DETECTED: typeof HTTP_508_LOOP_DETECTED; declare const status_HTTP_509_BANDWIDTH_LIMIT_EXCEEDED: typeof HTTP_509_BANDWIDTH_LIMIT_EXCEEDED; declare const status_HTTP_510_NOT_EXTENDED: typeof HTTP_510_NOT_EXTENDED; declare const status_HTTP_511_NETWORK_AUTHENTICATION_REQUIRED: typeof HTTP_511_NETWORK_AUTHENTICATION_REQUIRED; type status_RedirectionStatusCodes = RedirectionStatusCodes; type status_StatusCodes = StatusCodes; declare const status_isClientError: typeof isClientError; declare const status_isInformational: typeof isInformational; declare const status_isRedirect: typeof isRedirect; declare const status_isServerError: typeof isServerError; declare const status_isSuccess: typeof isSuccess; declare namespace status { export { status_HTTP_100_CONTINUE as HTTP_100_CONTINUE, status_HTTP_101_SWITCHING_PROTOCOLS as HTTP_101_SWITCHING_PROTOCOLS, status_HTTP_200_OK as HTTP_200_OK, status_HTTP_201_CREATED as HTTP_201_CREATED, status_HTTP_202_ACCEPTED as HTTP_202_ACCEPTED, status_HTTP_203_NON_AUTHORITATIVE_INFORMATION as HTTP_203_NON_AUTHORITATIVE_INFORMATION, status_HTTP_204_NO_CONTENT as HTTP_204_NO_CONTENT, status_HTTP_205_RESET_CONTENT as HTTP_205_RESET_CONTENT, status_HTTP_206_PARTIAL_CONTENT as HTTP_206_PARTIAL_CONTENT, status_HTTP_207_MULTI_STATUS as HTTP_207_MULTI_STATUS, status_HTTP_208_ALREADY_REPORTED as HTTP_208_ALREADY_REPORTED, status_HTTP_226_IM_USED as HTTP_226_IM_USED, status_HTTP_300_MULTIPLE_CHOICES as HTTP_300_MULTIPLE_CHOICES, status_HTTP_301_MOVED_PERMANENTLY as HTTP_301_MOVED_PERMANENTLY, status_HTTP_302_FOUND as HTTP_302_FOUND, status_HTTP_303_SEE_OTHER as HTTP_303_SEE_OTHER, status_HTTP_304_NOT_MODIFIED as HTTP_304_NOT_MODIFIED, status_HTTP_305_USE_PROXY as HTTP_305_USE_PROXY, status_HTTP_306_RESERVED as HTTP_306_RESERVED, status_HTTP_307_TEMPORARY_REDIRECT as HTTP_307_TEMPORARY_REDIRECT, status_HTTP_308_PERMANENT_REDIRECT as HTTP_308_PERMANENT_REDIRECT, status_HTTP_400_BAD_REQUEST as HTTP_400_BAD_REQUEST, status_HTTP_401_UNAUTHORIZED as HTTP_401_UNAUTHORIZED, status_HTTP_402_PAYMENT_REQUIRED as HTTP_402_PAYMENT_REQUIRED, status_HTTP_403_FORBIDDEN as HTTP_403_FORBIDDEN, status_HTTP_404_NOT_FOUND as HTTP_404_NOT_FOUND, status_HTTP_405_METHOD_NOT_ALLOWED as HTTP_405_METHOD_NOT_ALLOWED, status_HTTP_406_NOT_ACCEPTABLE as HTTP_406_NOT_ACCEPTABLE, status_HTTP_407_PROXY_AUTHENTICATION_REQUIRED as HTTP_407_PROXY_AUTHENTICATION_REQUIRED, status_HTTP_408_REQUEST_TIMEOUT as HTTP_408_REQUEST_TIMEOUT, status_HTTP_409_CONFLICT as HTTP_409_CONFLICT, status_HTTP_410_GONE as HTTP_410_GONE, status_HTTP_411_LENGTH_REQUIRED as HTTP_411_LENGTH_REQUIRED, status_HTTP_412_PRECONDITION_FAILED as HTTP_412_PRECONDITION_FAILED, status_HTTP_413_REQUEST_ENTITY_TOO_LARGE as HTTP_413_REQUEST_ENTITY_TOO_LARGE, status_HTTP_414_REQUEST_URI_TOO_LONG as HTTP_414_REQUEST_URI_TOO_LONG, status_HTTP_415_UNSUPPORTED_MEDIA_TYPE as HTTP_415_UNSUPPORTED_MEDIA_TYPE, status_HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE as HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE, status_HTTP_417_EXPECTATION_FAILED as HTTP_417_EXPECTATION_FAILED, status_HTTP_418_IM_A_TEAPOT as HTTP_418_IM_A_TEAPOT, status_HTTP_422_UNPROCESSABLE_ENTITY as HTTP_422_UNPROCESSABLE_ENTITY, status_HTTP_423_LOCKED as HTTP_423_LOCKED, status_HTTP_424_FAILED_DEPENDENCY as HTTP_424_FAILED_DEPENDENCY, status_HTTP_426_UPGRADE_REQUIRED as HTTP_426_UPGRADE_REQUIRED, status_HTTP_428_PRECONDITION_REQUIRED as HTTP_428_PRECONDITION_REQUIRED, status_HTTP_429_TOO_MANY_REQUESTS as HTTP_429_TOO_MANY_REQUESTS, status_HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE as HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE, status_HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS as HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS, status_HTTP_500_INTERNAL_SERVER_ERROR as HTTP_500_INTERNAL_SERVER_ERROR, status_HTTP_501_NOT_IMPLEMENTED as HTTP_501_NOT_IMPLEMENTED, status_HTTP_502_BAD_GATEWAY as HTTP_502_BAD_GATEWAY, status_HTTP_503_SERVICE_UNAVAILABLE as HTTP_503_SERVICE_UNAVAILABLE, status_HTTP_504_GATEWAY_TIMEOUT as HTTP_504_GATEWAY_TIMEOUT, status_HTTP_505_HTTP_VERSION_NOT_SUPPORTED as HTTP_505_HTTP_VERSION_NOT_SUPPORTED, status_HTTP_506_VARIANT_ALSO_NEGOTIATES as HTTP_506_VARIANT_ALSO_NEGOTIATES, status_HTTP_507_INSUFFICIENT_STORAGE as HTTP_507_INSUFFICIENT_STORAGE, status_HTTP_508_LOOP_DETECTED as HTTP_508_LOOP_DETECTED, status_HTTP_509_BANDWIDTH_LIMIT_EXCEEDED as HTTP_509_BANDWIDTH_LIMIT_EXCEEDED, status_HTTP_510_NOT_EXTENDED as HTTP_510_NOT_EXTENDED, status_HTTP_511_NETWORK_AUTHENTICATION_REQUIRED as HTTP_511_NETWORK_AUTHENTICATION_REQUIRED, type status_RedirectionStatusCodes as RedirectionStatusCodes, type status_StatusCodes as StatusCodes, status_isClientError as isClientError, status_isInformational as isInformational, status_isRedirect as isRedirect, status_isServerError as isServerError, status_isSuccess as isSuccess }; } export { HTTP_429_TOO_MANY_REQUESTS as $, HTTP_400_BAD_REQUEST as A, HTTP_401_UNAUTHORIZED as B, HTTP_402_PAYMENT_REQUIRED as C, HTTP_403_FORBIDDEN as D, HTTP_404_NOT_FOUND as E, HTTP_405_METHOD_NOT_ALLOWED as F, HTTP_406_NOT_ACCEPTABLE as G, HTTP_100_CONTINUE as H, HTTP_407_PROXY_AUTHENTICATION_REQUIRED as I, HTTP_408_REQUEST_TIMEOUT as J, HTTP_409_CONFLICT as K, HTTP_410_GONE as L, HTTP_411_LENGTH_REQUIRED as M, HTTP_412_PRECONDITION_FAILED as N, HTTP_413_REQUEST_ENTITY_TOO_LARGE as O, HTTP_414_REQUEST_URI_TOO_LONG as P, HTTP_415_UNSUPPORTED_MEDIA_TYPE as Q, type RedirectionStatusCodes as R, type StatusCodes as S, HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE as T, HTTP_417_EXPECTATION_FAILED as U, HTTP_418_IM_A_TEAPOT as V, HTTP_422_UNPROCESSABLE_ENTITY as W, HTTP_423_LOCKED as X, HTTP_424_FAILED_DEPENDENCY as Y, HTTP_426_UPGRADE_REQUIRED as Z, HTTP_428_PRECONDITION_REQUIRED as _, isSuccess as a, HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE as a0, HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS as a1, HTTP_500_INTERNAL_SERVER_ERROR as a2, HTTP_501_NOT_IMPLEMENTED as a3, HTTP_502_BAD_GATEWAY as a4, HTTP_503_SERVICE_UNAVAILABLE as a5, HTTP_504_GATEWAY_TIMEOUT as a6, HTTP_505_HTTP_VERSION_NOT_SUPPORTED as a7, HTTP_506_VARIANT_ALSO_NEGOTIATES as a8, HTTP_507_INSUFFICIENT_STORAGE as a9, HTTP_508_LOOP_DETECTED as aa, HTTP_509_BANDWIDTH_LIMIT_EXCEEDED as ab, HTTP_510_NOT_EXTENDED as ac, HTTP_511_NETWORK_AUTHENTICATION_REQUIRED as ad, isRedirect as b, isClientError as c, isServerError as d, HTTP_101_SWITCHING_PROTOCOLS as e, HTTP_200_OK as f, HTTP_201_CREATED as g, HTTP_202_ACCEPTED as h, isInformational as i, HTTP_203_NON_AUTHORITATIVE_INFORMATION as j, HTTP_204_NO_CONTENT as k, HTTP_205_RESET_CONTENT as l, HTTP_206_PARTIAL_CONTENT as m, HTTP_207_MULTI_STATUS as n, HTTP_208_ALREADY_REPORTED as o, HTTP_226_IM_USED as p, HTTP_300_MULTIPLE_CHOICES as q, HTTP_301_MOVED_PERMANENTLY as r, status as s, HTTP_302_FOUND as t, HTTP_303_SEE_OTHER as u, HTTP_304_NOT_MODIFIED as v, HTTP_305_USE_PROXY as w, HTTP_306_RESERVED as x, HTTP_307_TEMPORARY_REDIRECT as y, HTTP_308_PERMANENT_REDIRECT as z };