"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/mobile/audio-mode/actionTypes.ts" (2 Jun 2023, 486 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.

    1 /**
    2  * The type of redux action to set Audio Mode device list.
    3  *
    4  * {
    5  *     type: _SET_AUDIOMODE_DEVICES,
    6  *     devices: Array
    7  * }
    8  *
    9  * @protected
   10  */
   11 export const _SET_AUDIOMODE_DEVICES = '_SET_AUDIOMODE_DEVICES';
   12 
   13 /**
   14  * The type of redux action to set Audio Mode module's subscriptions.
   15  *
   16  * {
   17  *     type: _SET_AUDIOMODE_SUBSCRIPTIONS,
   18  *     subscriptions: Array|undefined
   19  * }
   20  *
   21  * @protected
   22  */
   23 export const _SET_AUDIOMODE_SUBSCRIPTIONS = '_SET_AUDIOMODE_SUBSCRIPTIONS';