feat(rnsdk): add audio and video muted state changed

This commit is contained in:
Abbas Al-Mansoori
2023-11-16 09:28:52 +01:00
committed by Calinteodor
parent a71143891e
commit 6d02f50d09
6 changed files with 94 additions and 4 deletions

View File

@@ -72,6 +72,24 @@ export const CONFERENCE_BLURRED = 'CONFERENCE_BLURRED';
*/
export const CONFERENCE_FOCUSED = 'CONFERENCE_FOCUSED';
/**
* The type of (redux) action which signals that the audio mute state is changed.
*
* {
* type: AUDIO_MUTED_CHANGED,
* }
*/
export const AUDIO_MUTED_CHANGED = 'AUDIO_MUTED_CHANGED';
/**
* The type of (redux) action which signals that the video mute state is changed.
*
* {
* type: VIDEO_MUTED_CHANGED,
* }
*/
export const VIDEO_MUTED_CHANGED = 'VIDEO_MUTED_CHANGED';
/**
* The type of (redux) action, which indicates conference local subject changes.
*