2021-08-23 09:57:56 +00:00
|
|
|
/**
|
|
|
|
* The name of the bundled audio files which will be played for the laugh reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const LAUGH_SOUND_FILES = new Array(3).fill('reactions-laughter.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the clap reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const CLAP_SOUND_FILES = new Array(3).fill('reactions-applause.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the like reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const LIKE_SOUND_FILES = new Array(3).fill('reactions-thumbs-up.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the boo reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const BOO_SOUND_FILES = new Array(3).fill('reactions-boo.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the surprised reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const SURPRISE_SOUND_FILES = new Array(3).fill('reactions-surprise.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the silence reaction sound.
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const SILENCE_SOUND_FILES = new Array(3).fill('reactions-crickets.mp3');
|
2021-08-23 09:57:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the bundled audio file which will be played for the raise hand sound.
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2021-09-02 07:38:01 +00:00
|
|
|
export const RAISE_HAND_SOUND_FILE = 'reactions-raised-hand.mp3';
|