* 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.
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
/**
|
|
* The identifier of the sound to be played when the status of an outgoing call
|
|
* is ringing.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const OUTGOING_CALL_RINGING_SOUND_ID = 'OUTGOING_CALL_RINGING_SOUND_ID';
|
|
|
|
/**
|
|
* The identifier of the sound to be played when outgoing call is started.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const OUTGOING_CALL_START_SOUND_ID = 'OUTGOING_CALL_START_SOUND_ID';
|