"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7309/react/features/gifs/actionTypes.ts" (31 May 2023, 1050 Bytes) of package /linux/misc/jitsi-meet-7309.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":
7236_vs_7251.
1 /**
2 * Adds a gif for a given participant.
3 * {{
4 * type: ADD_GIF_FOR_PARTICIPANT,
5 * participantId: string,
6 * gifUrl: string,
7 * timeoutID: number
8 * }}
9 */
10 export const ADD_GIF_FOR_PARTICIPANT = 'ADD_GIF_FOR_PARTICIPANT';
11
12 /**
13 * Set timeout to hide a gif for a given participant.
14 * {{
15 * type: HIDE_GIF_FOR_PARTICIPANT,
16 * participantId: string
17 * }}
18 */
19 export const HIDE_GIF_FOR_PARTICIPANT = 'HIDE_GIF_FOR_PARTICIPANT';
20
21 /**
22 * Removes a gif for a given participant.
23 * {{
24 * type: REMOVE_GIF_FOR_PARTICIPANT,
25 * participantId: string
26 * }}
27 */
28 export const REMOVE_GIF_FOR_PARTICIPANT = 'REMOVE_GIF_FOR_PARTICIPANT';
29
30 /**
31 * Set gif menu visibility.
32 * {{
33 * type: SET_GIF_MENU_VISIBILITY,
34 * visible: boolean
35 * }}
36 */
37 export const SET_GIF_MENU_VISIBILITY = 'SET_GIF_MENU_VISIBILITY';
38
39 /**
40 * Keep showing a gif for a given participant.
41 * {{
42 * type: SHOW_GIF_FOR_PARTICIPANT,
43 * participantId: string
44 * }}
45 */
46 export const SHOW_GIF_FOR_PARTICIPANT = 'SHOW_GIF_FOR_PARTICIPANT';