"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7316/react/features/overlay/actionTypes.ts" (5 Jun 2023, 356 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. 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 Redux action which signals that the prompt for media
    3  * permission is visible or not.
    4  *
    5  * {
    6  *     type: MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED,
    7  *     isVisible: {boolean},
    8  *     browser: {string}
    9  * }
   10  * @public
   11  */
   12 export const MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED
   13     = 'MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED';