mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-10 17:38:41 +00:00
16 lines
254 B
JavaScript
Executable File
16 lines
254 B
JavaScript
Executable File
/**
|
|
* Notification type.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
export const EnumNotifyType = Object.freeze({
|
|
BINARY: 0,
|
|
INFO: 1,
|
|
WARNING: 2,
|
|
ERROR: 3,
|
|
FATAL: 4
|
|
});
|