"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7316/react/features/video-layout/actionTypes.ts" (5 Jun 2023, 791 Bytes) of package /linux/misc/jitsi-meet-7316.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.

    1 /**
    2  * The type of the action which tells whether we are in carmode.
    3  *
    4  * @returns {{
    5  *     type: SET_CAR_MODE,
    6  *     enabled: boolean
    7  * }}
    8  */
    9 export const SET_CAR_MODE = ' SET_CAR_MODE';
   10 
   11 /**
   12  * The type of the action which enables or disables the feature for showing
   13  * video thumbnails in a two-axis tile view.
   14  *
   15  * @returns {{
   16  *     type: SET_TILE_VIEW,
   17  *     enabled: boolean
   18  * }}
   19  */
   20 export const SET_TILE_VIEW = 'SET_TILE_VIEW';
   21 
   22 /**
   23  * The type of the action which sets the list of known remote virtual screen share participant IDs.
   24  *
   25  * @returns {{
   26  *     type: VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED,
   27  *     participantIds: Array<string>
   28  * }}
   29  */
   30 export const VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED = 'VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED';