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 = new Array(3).fill('reactions-laughter.mp3'); 7 8 /** 9 * The name of the bundled audio file which will be played for the clap reaction sound. 10 * 11 * @type {Array<string>} 12 */ 13 export const CLAP_SOUND_FILES = new Array(3).fill('reactions-applause.mp3'); 14 15 /** 16 * The name of the bundled audio file which will be played for the like reaction sound. 17 * 18 * @type {Array<string>} 19 */ 20 export const LIKE_SOUND_FILES = new Array(3).fill('reactions-thumbs-up.mp3'); 21 22 /** 23 * The name of the bundled audio file which will be played for the boo reaction sound. 24 * 25 * @type {Array<string>} 26 */ 27 export const BOO_SOUND_FILES = new Array(3).fill('reactions-boo.mp3'); 28 29 /** 30 * The name of the bundled audio file which will be played for the surprised reaction sound. 31 * 32 * @type {Array<string>} 33 */ 34 export const SURPRISE_SOUND_FILES = new Array(3).fill('reactions-surprise.mp3'); 35 36 /** 37 * The name of the bundled audio file which will be played for the silence reaction sound. 38 * 39 * @type {Array<string>} 40 */ 41 export const SILENCE_SOUND_FILES = new Array(3).fill('reactions-crickets.mp3'); 42 43 /** 44 * The name of the bundled audio file which will be played for the raise hand sound. 45 * 46 * @type {string} 47 */ 48 export const RAISE_HAND_SOUND_FILE = 'reactions-raised-hand.mp3';