"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7312/react/features/screen-share/actionTypes.ts" (1 Jun 2023, 745 Bytes) of package /linux/misc/jitsi-meet-7312.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "actionTypes.ts": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 /**
    2  * Type of action which sets the current state of screen audio sharing.
    3  *
    4  * {
    5  *     type: SET_SCREEN_AUDIO_SHARE_STATE,
    6  *     isSharingAudio: boolean
    7  * }
    8  */
    9 export const SET_SCREEN_AUDIO_SHARE_STATE = 'SET_SCREEN_AUDIO_SHARE_STATE';
   10 
   11 /**
   12  * Type of action which sets the capture frame rate for screenshare.
   13  * {
   14  *      type: SET_SCREENSHARE_CAPTURE_FRAME_RATE,
   15  *      captureFrameRate: number
   16  * }
   17  */
   18 export const SET_SCREENSHARE_CAPTURE_FRAME_RATE = 'SET_SCREENSHARE_CAPTURE_FRAME_RATE';
   19 
   20 /**
   21  * Type of action which sets the current audio track captured from the screenshare.
   22  * {
   23  *      type: SET_SCREENSHARE_TRACKS,
   24  *      desktopAudioTrack: JitsiTrack
   25  * }
   26  */
   27 export const SET_SCREENSHARE_TRACKS = 'SET_SCREENSHARE_TRACKS';