"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7312/react/features/reactions/sounds.ts" (1 Jun 2023, 1404 Bytes) of package /linux/misc/jitsi-meet-7312.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    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';