"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7307/react/features/reactions/actions.web.ts" (30 May 2023, 349 Bytes) of package /linux/misc/jitsi-meet-7307.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 import {
    2     TOGGLE_REACTIONS_VISIBLE
    3 } from './actionTypes';
    4 import { IReactionsAction } from './reducer';
    5 
    6 export * from './actions.any';
    7 
    8 /**
    9  * Toggles the visibility of the reactions menu.
   10  *
   11  * @returns {void}
   12  */
   13 export function toggleReactionsMenuVisibility(): IReactionsAction {
   14     return {
   15         type: TOGGLE_REACTIONS_VISIBLE
   16     };
   17 }