jsOMS/Model/Message/NotifyType.js
2022-02-19 13:57:39 +01:00

17 lines
255 B
JavaScript
Executable File

/**
* Notification type.
*
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @since 1.0.0
*/
export const EnumNotifyType = Object.freeze({
BINARY: 0,
INFO: 1,
WARNING: 2,
ERROR: 3,
FATAL: 4
});