14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
export const enum HttpStatus {
|
|
Ok = 200,
|
|
Created = 201,
|
|
Accepted = 202,
|
|
NoContent = 204,
|
|
BadRequest = 400,
|
|
Unauthorized = 401,
|
|
Forbidden = 403,
|
|
NotFound = 404,
|
|
Conflict = 409,
|
|
PayloadTooLarge = 413,
|
|
InternalServerError = 500,
|
|
}
|