Comply w/ coding style
This commit is contained in:
parent
bcbdaaa6ea
commit
684572bd05
|
@ -1,31 +1,32 @@
|
||||||
import { Symbol } from '../react';
|
import { Symbol } from '../react';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action to set the muted state of the local audio.
|
* The type of (redux) action to set the muted state of the local audio.
|
||||||
*
|
*
|
||||||
* {
|
* {
|
||||||
* type: SET_AUDIO_MUTED,
|
* type: SET_AUDIO_MUTED,
|
||||||
* muted: boolean
|
* muted: boolean
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
|
export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action to set the facing mode of the local video camera.
|
* The type of (redux) action to set the facing mode of the local video camera
|
||||||
|
* to a specific value.
|
||||||
*
|
*
|
||||||
* {
|
* {
|
||||||
* type: SET_CAMERA_FACING_MODE,
|
* type: SET_CAMERA_FACING_MODE,
|
||||||
* cameraFacingMode: CAMERA_FACING_MODE
|
* cameraFacingMode: CAMERA_FACING_MODE
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE');
|
export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action to set the muted state of the local video.
|
* The type of (redux) action to set the muted state of the local video.
|
||||||
*
|
*
|
||||||
* {
|
* {
|
||||||
* type: SET_VIDEO_MUTED,
|
* type: SET_VIDEO_MUTED,
|
||||||
* muted: boolean
|
* muted: boolean
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');
|
export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');
|
||||||
|
|
Loading…
Reference in New Issue