13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
|
/**
|
||
|
* The set of possible notification types.
|
||
|
*
|
||
|
* @enum {string}
|
||
|
*/
|
||
|
export const NOTIFICATION_TYPE = {
|
||
|
ERROR: 'error',
|
||
|
INFO: 'info',
|
||
|
NORMAL: 'normal',
|
||
|
SUCCESS: 'success',
|
||
|
WARNING: 'warning'
|
||
|
};
|