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

constants.js 806B

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