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

constants.js 922B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Modal ID for the DialInSummary modal.
  3. */
  4. export const DIAL_IN_SUMMARY_VIEW_ID = 'DIAL_IN_SUMMARY_VIEW_ID';
  5. /**
  6. * The identifier of the sound to be played when the status of an outgoing call
  7. * is expired.
  8. *
  9. * @type {string}
  10. */
  11. export const OUTGOING_CALL_EXPIRED_SOUND_ID
  12. = 'OUTGOING_CALL_EXPIRED_SOUND_ID';
  13. /**
  14. * The identifier of the sound to be played when the status of an outgoing call
  15. * is rejected.
  16. *
  17. * @type {string}
  18. */
  19. export const OUTGOING_CALL_REJECTED_SOUND_ID
  20. = 'OUTGOING_CALL_REJECTED_SOUND_ID';
  21. /**
  22. * The identifier of the sound to be played when the status of an outgoing call
  23. * is ringing.
  24. *
  25. * @type {string}
  26. */
  27. export const OUTGOING_CALL_RINGING_SOUND_ID = 'OUTGOING_CALL_RINGING_SOUND_ID';
  28. /**
  29. * The identifier of the sound to be played when outgoing call is started.
  30. *
  31. * @type {string}
  32. */
  33. export const OUTGOING_CALL_START_SOUND_ID = 'OUTGOING_CALL_START_SOUND_ID';