added missing trailing comma

This commit is contained in:
Diego Cáceres 2018-07-30 17:24:57 -03:00
parent 83c26fd01c
commit f9da44fb0a

View File

@ -69,7 +69,7 @@ type RecordingOptions = {
quality?: number | string,
codec?: string,
mute?: boolean,
path?: string
path?: string,
};
type EventCallbackArgumentsType = {
@ -238,7 +238,7 @@ export default class Camera extends React.Component<PropsType, StateType> {
playSoundOnCapture: false,
pictureSize: 'None',
videoStabilizationMode: 0,
mirrorVideo: false
mirrorVideo: false,
};
_cameraRef: ?Object;