選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. };