You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aConnect-UX/src/app/utils/enums.ts

21 lines
434 B
TypeScript

export enum ErrorMessages{
INTERNAL_SERVER_ERROR = "ERR_APP_B_0001",
CONNECTION_ERROR = "ERR_APP_B_0002",
BAD_REQUEST = "ERR_APP_B_0003",
FORBIDDEN_REQUEST = "ERR_APP_B_0004",
UNAUTHORIZED_REQUEST = "ERR_APP_B_0005",
}
export enum supportedLanguages{
ENGLISH = "English",
ARABIC = "Arabic"
}
export enum directions{
LTR = 'ltr',
RTL = 'rtl'
}
export enum APP_URL_KEY{
API_PATH = 'API_PATH'
}