"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7307/react/features/base/responsive-ui/actionTypes.ts" (30 May 2023, 1375 Bytes) of package /linux/misc/jitsi-meet-7307.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 indicates that the client window has been resized.
3 *
4 * {
5 * type: CLIENT_RESIZED
6 * }
7 */
8 export const CLIENT_RESIZED = 'CLIENT_RESIZED';
9
10 /**
11 * The type of (redux) action which indicates that the insets from the SafeAreaProvider have changed.
12 *
13 * {
14 * type: SAFE_AREA_INSETS_CHANGED,
15 * insets: Object
16 * }
17 */
18 export const SAFE_AREA_INSETS_CHANGED = 'SAFE_AREA_INSETS_CHANGED';
19
20 /**
21 * The type of (redux) action which sets the aspect ratio of the app's user
22 * interface.
23 *
24 * {
25 * type: SET_ASPECT_RATIO,
26 * aspectRatio: Symbol
27 * }
28 */
29 export const SET_ASPECT_RATIO = 'SET_ASPECT_RATIO';
30
31 /**
32 * The type of redux action which signals that the reduces UI mode was enabled
33 * or disabled.
34 *
35 * {
36 * type: SET_REDUCED_UI,
37 * reducedUI: boolean
38 * }
39 *
40 * @public
41 */
42 export const SET_REDUCED_UI = 'SET_REDUCED_UI';
43
44 /**
45 * The type of (redux) action which tells whether a local or remote participant
46 * context menu is open.
47 *
48 * {
49 * type: SET_CONTEXT_MENU_OPEN,
50 * showConnectionInfo: boolean
51 * }
52 */
53 export const SET_CONTEXT_MENU_OPEN = 'SET_CONTEXT_MENU_OPEN';
54
55 /**
56 * The type of redux action which signals whether we are in narrow layout.
57 *
58 * {
59 * type: SET_NARROW_LAYOUT,
60 * isNarrow: boolean
61 * }
62 *
63 * @public
64 */
65 export const SET_NARROW_LAYOUT = 'SET_NARROW_LAYOUT';
66