You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 217B

123456789101112
  1. /**
  2. * The set of possible notification types.
  3. *
  4. * @enum {string}
  5. */
  6. export const NOTIFICATION_TYPE = {
  7. ERROR: 'error',
  8. INFO: 'info',
  9. NORMAL: 'normal',
  10. SUCCESS: 'success',
  11. WARNING: 'warning'
  12. };