Interface RePortParameters

interface RePortParameters {
    recordingDisplayType: "video" | "all" | "media";
    recordingVideoOptimized: boolean;
    activeNames: string[];
    trigger: TriggerType;
    prevActiveNames: string[];
    updateActiveNames: ((activeNames: string[]) => void);
    updatePrevActiveNames: ((prevActiveNames: string[]) => void);
    islevel: string;
    mainScreenPerson: string;
    adminOnMainScreen: boolean;
    mainScreenFilled: boolean;
    recordStarted: boolean;
    recordStopped: boolean;
    recordPaused: boolean;
    recordResumed: boolean;
    screenStates: any[];
    prevScreenStates: any[];
    updateScreenStates: ((states: any[]) => void);
    updatePrevScreenStates: ((states: any[]) => void);
    compareActiveNames: CompareActiveNamesType;
    compareScreenStates: CompareScreenStatesType;
    getUpdatedAllParams: (() => RePortParameters);
    [key: string]: any;
}

Hierarchy (view full)

Indexable

  • [key: string]: any

Properties

recordingDisplayType: "video" | "all" | "media"
recordingVideoOptimized: boolean
activeNames: string[]
trigger: TriggerType
prevActiveNames: string[]
updateActiveNames: ((activeNames: string[]) => void)
updatePrevActiveNames: ((prevActiveNames: string[]) => void)
islevel: string
mainScreenPerson: string
adminOnMainScreen: boolean
mainScreenFilled: boolean
recordStarted: boolean
recordStopped: boolean
recordPaused: boolean
recordResumed: boolean
screenStates: any[]
prevScreenStates: any[]
updateScreenStates: ((states: any[]) => void)
updatePrevScreenStates: ((states: any[]) => void)
compareActiveNames: CompareActiveNamesType
compareScreenStates: CompareScreenStatesType
getUpdatedAllParams: (() => RePortParameters)