"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7329/react/features/share-room/actionTypes.ts" (9 Jun 2023, 736 Bytes) of package /linux/misc/jitsi-meet-7329.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 begins the UI procedure to share the current
3 * conference/room URL.
4 *
5 * {
6 * type: BEGIN_SHARE_ROOM,
7 * roomURL: string,
8 * includeDialInfo: boolean
9 * }
10 */
11 export const BEGIN_SHARE_ROOM = 'BEGIN_SHARE_ROOM';
12
13 /**
14 * The type of (redux) action which ends the UI procedure to share a specific
15 * conference/room URL.
16 *
17 * {
18 * type: END_SHARE_ROOM,
19 * roomURL: string,
20 * shared: boolean
21 * }
22 */
23 export const END_SHARE_ROOM = 'END_SHARE_ROOM';
24
25 /**
26 * The type of (redux) action which toggles the share meeting url dialog visibility.
27 *
28 * {
29 * type: TOGGLE_SHARE_DIALOG,
30 * visible: boolean
31 * }
32 */
33 export const TOGGLE_SHARE_DIALOG = 'TOGGLE_SHARE_DIALOG';