ravendb
Version:
RavenDB client for Node.js
25 lines • 739 B
JavaScript
export class StatusCodes {
static Ok = 200;
static Created = 201;
static Accepted = 202;
static NonAuthoritativeInformation = 203;
static NoContent = 204;
static MovedPermanently = 301;
static Found = 302;
static NotModified = 304;
static BadRequest = 400;
static Unauthorized = 401;
static Forbidden = 403;
static NotFound = 404;
static RequestTimeout = 408;
static Conflict = 409;
static PreconditionFailed = 412;
static ExpectationFailed = 417;
static TooEarly = 425;
static InternalServerError = 500;
static BadGateway = 502;
static ServiceUnavailable = 503;
static GatewayTimeout = 504;
static Gone = 410;
}
//# sourceMappingURL=StatusCode.js.map