"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7313/react/features/videosipgw/actionTypes.ts" (2 Jun 2023, 563 Bytes) of package /linux/misc/jitsi-meet-7313.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 which signals that sip GW service change its
    3  * availability status.
    4  *
    5  * {
    6  *     type: SIP_GW_AVAILABILITY_CHANGED,
    7  *     status: string
    8  * }
    9  */
   10 export const SIP_GW_AVAILABILITY_CHANGED
   11     = 'SIP_GW_AVAILABILITY_CHANGED';
   12 
   13 /**
   14  * The type of the action which signals to invite room participants to the
   15  * conference through the SIP Jibri service.
   16  *
   17  * {
   18  *     type: SIP_GW_INVITE_ROOMS,
   19  *     conference: JitsiConference,
   20  *     rooms: {Immutable.List}
   21  * }
   22  */
   23 export const SIP_GW_INVITE_ROOMS = 'SIP_GW_INVITE_ROOMS';