"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7309/react/features/transcribing/actionTypes.ts" (31 May 2023, 1183 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.
1 /**
2 * The type of Redux action triggering storage of participantId of transcriber,
3 * so that it can later be kicked
4 *
5 * {
6 * type: TRANSCRIBER_JOINED,
7 * participantId: String
8 * }
9 * @private
10 */
11 export const _TRANSCRIBER_JOINED = 'TRANSCRIBER_JOINED';
12
13 /**
14 * The type of Redux action signalling that the transcriber has left
15 *
16 * {
17 * type: TRANSCRIBER_LEFT,
18 * participantId: String
19 * }
20 * @private
21 */
22 export const _TRANSCRIBER_LEFT = 'TRANSCRIBER_LEFT';
23
24 /**
25 * The type of a Redux action signalling that a hidden participant has joined,
26 * which can be candidate for being a transcriber.
27 *
28 * {
29 * type: _POTENTIAL_TRANSCRIBER_JOINED,
30 * }
31 * @private
32 */
33 export const _POTENTIAL_TRANSCRIBER_JOINED
34 = 'POTENTIAL_TRANSCRIBER_JOINED';
35
36 /**
37 * The type of Redux action which sets the pending transcribing notification UID
38 * to use it for when hiding the notification is necessary, or unsets it when
39 * undefined (or no param) is passed.
40 *
41 * {
42 * type: SET_PENDING_TRANSCRIBING_NOTIFICATION_UID,
43 * uid: ?number
44 * }
45 * @public
46 */
47 export const SET_PENDING_TRANSCRIBING_NOTIFICATION_UID
48 = 'SET_PENDING_TRANSCRIBING_NOTIFICATION_UID';