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

sounds.native.js 372B

12345678910111213
  1. /**
  2. * Points to the sound file which will be played when new participant joins
  3. * the conference.
  4. */
  5. export const PARTICIPANT_JOINED_SRC
  6. = require('../../../../sounds/joined.wav');
  7. /**
  8. * Points to the sound file which will be played when any participant leaves
  9. * the conference.
  10. */
  11. export const PARTICIPANT_LEFT_SRC
  12. = require('../../../../sounds/left.wav');