"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7328/react/features/shared-video/actionTypes.ts" (8 Jun 2023, 673 Bytes) of package /linux/misc/jitsi-meet-7328.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  * The type of the action which signals to update the current known state of the
    3  * shared video.
    4  *
    5  * {
    6  *     type: SET_SHARED_VIDEO_STATUS,
    7  *     status: string
    8  * }
    9  */
   10 export const SET_SHARED_VIDEO_STATUS = 'SET_SHARED_VIDEO_STATUS';
   11 
   12 /**
   13  * The type of the action which signals to reset the current known state of the
   14  * shared video.
   15  *
   16  * {
   17  *     type: RESET_SHARED_VIDEO_STATUS,
   18  * }
   19  */
   20 export const RESET_SHARED_VIDEO_STATUS = 'RESET_SHARED_VIDEO_STATUS';
   21 
   22 /**
   23  * The type of the action which signals to disable or enable the shared video
   24  * button.
   25  *
   26  * {
   27  *     type: SET_DISABLE_BUTTON
   28  * }
   29  */
   30 export const SET_DISABLE_BUTTON = 'SET_DISABLE_BUTTON';