Comply w/ coding style
This commit is contained in:
parent
bcbdaaa6ea
commit
684572bd05
|
@ -1,7 +1,7 @@
|
||||||
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,
|
||||||
|
@ -11,7 +11,8 @@ import { Symbol } from '../react';
|
||||||
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,
|
||||||
|
@ -21,7 +22,7 @@ export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
|
||||||
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,
|
||||||
|
|
Loading…
Reference in New Issue