12 lines
501 B
TypeScript
12 lines
501 B
TypeScript
export const STATUS_CODE_NO_INTERNET = 20;
|
|
export const STATUS_CODE_UNAUTHORIZED = 401;
|
|
export const STATUS_CODE_FORBIDDEN = 403;
|
|
export const STATUS_CODE_NOT_FOUND = 404;
|
|
export const STATUS_CODE_INTERNAL_SERVER_ERROR = 500;
|
|
export const STATUS_CODE_BAD_REQUEST = 400;
|
|
export const STATUS_CODE_SERVICE_UNAVAILABLE = 503;
|
|
export const STATUS_CODE_TIMEOUT = 408;
|
|
export const STATUS_CODE_CONFLICT = 409;
|
|
export const STATUS_CODE_GATEWAY_TIMEOUT = 504;
|
|
export const STATUS_CODE_TOO_MANY_REQUESTS = 429;
|