"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/follow-me/actionTypes.ts" (2 Jun 2023, 418 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 id of the Follow Me moderator.
    3  *
    4  * {
    5  *     type: SET_FOLLOW_ME_MODERATOR,
    6  *     id: boolean
    7  * }
    8  */
    9 export const SET_FOLLOW_ME_MODERATOR = 'SET_FOLLOW_ME_MODERATOR';
   10 
   11 /**
   12  * The type of (redux) action which updates the current known state of the
   13  * Follow Me feature.
   14  *
   15  *
   16  * {
   17  *     type: SET_FOLLOW_ME_STATE,
   18  *     state: boolean
   19  * }
   20  */
   21 export const SET_FOLLOW_ME_STATE = 'SET_FOLLOW_ME_STATE';