dinoloop-es8
Version:
A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript
50 lines (49 loc) • 1.28 kB
TypeScript
export declare enum HttpStatusCode {
continue = 100,
switchingProtocols = 101,
oK = 200,
created = 201,
accepted = 202,
nonAuthoritativeInformation = 203,
noContent = 204,
resetContent = 205,
partialContent = 206,
multipleChoices = 300,
ambiguous = 300,
movedPermanently = 301,
moved = 301,
found = 302,
redirect = 302,
seeOther = 303,
redirectMethod = 303,
notModified = 304,
useProxy = 305,
unused = 306,
temporaryRedirect = 307,
redirectKeepVerb = 307,
badRequest = 400,
unauthorized = 401,
paymentRequired = 402,
forbidden = 403,
notFound = 404,
methodNotAllowed = 405,
notAcceptable = 406,
proxyAuthenticationRequired = 407,
requestTimeout = 408,
conflict = 409,
gone = 410,
lengthRequired = 411,
preconditionFailed = 412,
requestEntityTooLarge = 413,
requestUriTooLong = 414,
unsupportedMediaType = 415,
requestedRangeNotSatisfiable = 416,
expectationFailed = 417,
upgradeRequired = 426,
internalServerError = 500,
notImplemented = 501,
badGateway = 502,
serviceUnavailable = 503,
gatewayTimeout = 504,
httpVersionNotSupported = 505,
}