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

16 lines
303 B
JavaScript
Executable File

/**
* Notification data enum.
*
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @since 1.0.0
*/
export const NotificationLevel = Object.freeze({
OK: 'ok',
INFO: 'info',
WARNING: 'warning',
ERROR: 'error',
HIDDEN: 'hidden'
});