1 /** 2 * The type of the action which tells whether we are in carmode. 3 * 4 * @returns {{ 5 * type: SET_CAR_MODE, 6 * enabled: boolean 7 * }} 8 */ 9 export const SET_CAR_MODE = ' SET_CAR_MODE'; 10 11 /** 12 * The type of the action which enables or disables the feature for showing 13 * video thumbnails in a two-axis tile view. 14 * 15 * @returns {{ 16 * type: SET_TILE_VIEW, 17 * enabled: boolean 18 * }} 19 */ 20 export const SET_TILE_VIEW = 'SET_TILE_VIEW'; 21 22 /** 23 * The type of the action which sets the list of known remote virtual screen share participant IDs. 24 * 25 * @returns {{ 26 * type: VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED, 27 * participantIds: Array<string> 28 * }} 29 */ 30 export const VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED = 'VIRTUAL_SCREENSHARE_REMOTE_PARTICIPANTS_UPDATED';