|
@@ -1,31 +1,32 @@
|
1
|
1
|
import { Symbol } from '../react';
|
2
|
2
|
|
3
|
3
|
/**
|
4
|
|
- * Action to set the muted state of the local audio.
|
|
4
|
+ * The type of (redux) action to set the muted state of the local audio.
|
5
|
5
|
*
|
6
|
6
|
* {
|
7
|
|
- * type: SET_AUDIO_MUTED,
|
8
|
|
- * muted: boolean
|
|
7
|
+ * type: SET_AUDIO_MUTED,
|
|
8
|
+ * muted: boolean
|
9
|
9
|
* }
|
10
|
10
|
*/
|
11
|
11
|
export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
|
12
|
12
|
|
13
|
13
|
/**
|
14
|
|
- * Action to set the facing mode of the local video camera.
|
|
14
|
+ * The type of (redux) action to set the facing mode of the local video camera
|
|
15
|
+ * to a specific value.
|
15
|
16
|
*
|
16
|
17
|
* {
|
17
|
|
- * type: SET_CAMERA_FACING_MODE,
|
18
|
|
- * cameraFacingMode: CAMERA_FACING_MODE
|
|
18
|
+ * type: SET_CAMERA_FACING_MODE,
|
|
19
|
+ * cameraFacingMode: CAMERA_FACING_MODE
|
19
|
20
|
* }
|
20
|
21
|
*/
|
21
|
22
|
export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE');
|
22
|
23
|
|
23
|
24
|
/**
|
24
|
|
- * Action to set the muted state of the local video.
|
|
25
|
+ * The type of (redux) action to set the muted state of the local video.
|
25
|
26
|
*
|
26
|
27
|
* {
|
27
|
|
- * type: SET_VIDEO_MUTED,
|
28
|
|
- * muted: boolean
|
|
28
|
+ * type: SET_VIDEO_MUTED,
|
|
29
|
+ * muted: boolean
|
29
|
30
|
* }
|
30
|
31
|
*/
|
31
|
32
|
export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');
|