Interface LaunchRecordingOptions

interface LaunchRecordingOptions {
    updateIsRecordingModalVisible: ((visible: boolean) => void);
    isRecordingModalVisible: boolean;
    showAlert?: ShowAlert;
    stopLaunchRecord: boolean;
    canLaunchRecord: boolean;
    recordingAudioSupport: boolean;
    recordingVideoSupport: boolean;
    updateCanRecord: ((canRecord: boolean) => void);
    updateClearedToRecord: ((cleared: boolean) => void);
    recordStarted: boolean;
    recordPaused: boolean;
    localUIMode: boolean;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

updateIsRecordingModalVisible: ((visible: boolean) => void)
isRecordingModalVisible: boolean
showAlert?: ShowAlert
stopLaunchRecord: boolean
canLaunchRecord: boolean
recordingAudioSupport: boolean
recordingVideoSupport: boolean
updateCanRecord: ((canRecord: boolean) => void)
updateClearedToRecord: ((cleared: boolean) => void)
recordStarted: boolean
recordPaused: boolean
localUIMode: boolean
MMNEPVFCICPMFPCPTTAAATR