"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7307/react/features/base/settings/actionTypes.ts" (30 May 2023, 606 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 /**
    2  * Create an action for when the settings are updated.
    3  *
    4  * {
    5  *     type: SETTINGS_UPDATED,
    6  *     settings: {
    7  *         audioOutputDeviceId: string,
    8  *         avatarURL: string,
    9  *         cameraDeviceId: string,
   10  *         displayName: string,
   11  *         email: string,
   12  *         localFlipX: boolean,
   13  *         micDeviceId: string,
   14  *         serverURL: string,
   15  *         startAudioOnly: boolean,
   16  *         startWithAudioMuted: boolean,
   17  *         startWithVideoMuted: boolean,
   18  *         startWithReactionsMuted: boolean
   19  *     }
   20  * }
   21  */
   22 export const SETTINGS_UPDATED = 'SETTINGS_UPDATED';