"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7323/react/features/mobile/external-api/actionTypes.ts" (7 Jun 2023, 510 Bytes) of package /linux/misc/jitsi-meet-7323.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 the action which indicates the SDK is ready to be closed.
    3  *
    4  * @returns {{
    5  *     type: READY_TO_CLOSE
    6  * }}
    7  */
    8 export const READY_TO_CLOSE = 'READY_TO_CLOSE';
    9 
   10 /**
   11  * The type of the action which sets the list of known participant IDs which
   12  * have an active screen share.
   13  *
   14  * @returns {{
   15     *     type: SCREEN_SHARE_PARTICIPANTS_UPDATED,
   16     *     participantIds: Array<string>
   17     * }}
   18     */
   19 export const SCREEN_SHARE_PARTICIPANTS_UPDATED
   20     = 'SCREEN_SHARE_PARTICIPANTS_UPDATED';