"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7316/react/features/e2ee/actionTypes.ts" (5 Jun 2023, 657 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 action which signals that E2EE needs to be enabled / disabled.
    3  *
    4  * {
    5  *     type: TOGGLE_E2EE
    6  * }
    7  */
    8 export const TOGGLE_E2EE = 'TOGGLE_E2EE';
    9 
   10 /**
   11  * The type of the action which signals to set new value E2EE maxMode.
   12  *
   13  * {
   14  *     type: SET_MAX_MODE
   15  * }
   16  */
   17 export const SET_MAX_MODE = 'SET_MAX_MODE';
   18 
   19 /**
   20  * The type of the action which signals to set media encryption key for e2ee.
   21  *
   22  * {
   23  *     type: SET_MEDIA_ENCRYPTION_KEY
   24  * }
   25  */
   26 export const SET_MEDIA_ENCRYPTION_KEY = 'SET_MEDIA_ENCRYPTION_KEY';
   27 
   28 export const START_VERIFICATION = 'START_VERIFICATION';
   29 
   30 export const PARTICIPANT_VERIFIED = 'PARTICIPANT_VERIFIED';