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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * The name of the bundled audio files which will be played for the laugh reaction sound.
  3. *
  4. * @type {Array<string>}
  5. */
  6. export const LAUGH_SOUND_FILES = [ 'reactions-laughter.mp3', 'reactions-laughter.mp3', 'reactions-laughter.mp3' ];
  7. /**
  8. * The name of the bundled audio file which will be played for the clap reaction sound.
  9. *
  10. * @type {Array<string>}
  11. */
  12. export const CLAP_SOUND_FILES = [ 'reactions–applause.mp3', 'reactions–applause.mp3', 'reactions–applause.mp3' ];
  13. /**
  14. * The name of the bundled audio file which will be played for the like reaction sound.
  15. *
  16. * @type {Array<string>}
  17. */
  18. export const LIKE_SOUND_FILES = [ 'reactions–thumbs-up.mp3', 'reactions–thumbs-up.mp3', 'reactions–thumbs-up.mp3' ];
  19. /**
  20. * The name of the bundled audio file which will be played for the boo reaction sound.
  21. *
  22. * @type {Array<string>}
  23. */
  24. export const BOO_SOUND_FILES = [ 'reactions–boo.mp3', 'reactions–boo.mp3', 'reactions–boo.mp3' ];
  25. /**
  26. * The name of the bundled audio file which will be played for the surprised reaction sound.
  27. *
  28. * @type {Array<string>}
  29. */
  30. export const SURPRISE_SOUND_FILES = [ 'reactions–surprise.mp3', 'reactions–surprise.mp3', 'reactions–surprise.mp3' ];
  31. /**
  32. * The name of the bundled audio file which will be played for the silence reaction sound.
  33. *
  34. * @type {Array<string>}
  35. */
  36. export const SILENCE_SOUND_FILES = [ 'reactions–crickets.mp3', 'reactions–crickets.mp3', 'reactions–crickets.mp3' ];
  37. /**
  38. * The name of the bundled audio file which will be played for the raise hand sound.
  39. *
  40. * @type {string}
  41. */
  42. export const RAISE_HAND_SOUND_FILE = 'reactions–raised-hand.mp3';