Comply w/ coding style

This commit is contained in:
Lyubo Marinov 2017-04-04 17:51:22 -05:00
parent bcbdaaa6ea
commit 684572bd05
1 changed files with 10 additions and 9 deletions

View File

@ -1,31 +1,32 @@
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,
* muted: boolean
* type: SET_AUDIO_MUTED,
* muted: boolean
* }
*/
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,
* cameraFacingMode: CAMERA_FACING_MODE
* type: SET_CAMERA_FACING_MODE,
* cameraFacingMode: 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,
* muted: boolean
* type: SET_VIDEO_MUTED,
* muted: boolean
* }
*/
export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');