"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/virtual-background/actionTypes.ts" (2 Jun 2023, 591 Bytes) of package /linux/misc/jitsi-meet-7315.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 redux action dispatched which represents that the background
    3  * effect is enabled or not.
    4  *
    5  * @returns {{
    6  *     type: BACKGROUND_ENABLED,
    7  *     backgroundEffectEnabled: boolean
    8  * }}
    9  */
   10 export const BACKGROUND_ENABLED = 'BACKGROUND_ENABLED';
   11 
   12 /**
   13  * The type of the action which enables or disables virtual background
   14  *
   15  * @returns {{
   16  *     type: SET_VIRTUAL_BACKGROUND,
   17  *     virtualSource: string,
   18  *     blurValue: number,
   19  *     backgroundType: string,
   20  *     selectedThumbnail: string
   21  * }}
   22  */
   23 export const SET_VIRTUAL_BACKGROUND = 'SET_VIRTUAL_BACKGROUND';