Files
shop-api/src/common/enums/httpStatus.enum.ts
T
mahyargdz be82059172 first
2025-09-14 15:15:03 +03:30

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,
}