* fix(PresenceLabel): Use translated strings for the presence label. * feat(sounds): Implements loop and stop functionality. * feat(invite): Add ringtones. * fix(invite): Code style issues.
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
/**
|
|
* The name of the sound file which will be played when the status of an
|
|
* outgoing call is ringing.
|
|
*/
|
|
export const OUTGOING_CALL_RINGING_FILE = 'outgoingRinging.wav';
|
|
|
|
/**
|
|
* The name of the sound file which will be played when outgoing call is
|
|
* started.
|
|
*/
|
|
export const OUTGOING_CALL_START_FILE = 'outgoingStart.wav';
|