1 /** 2 * The type of the action which indicates the SDK is ready to be closed. 3 * 4 * @returns {{ 5 * type: READY_TO_CLOSE 6 * }} 7 */ 8 export const READY_TO_CLOSE = 'READY_TO_CLOSE'; 9 10 /** 11 * The type of the action which sets the list of known participant IDs which 12 * have an active screen share. 13 * 14 * @returns {{ 15 * type: SCREEN_SHARE_PARTICIPANTS_UPDATED, 16 * participantIds: Array<string> 17 * }} 18 */ 19 export const SCREEN_SHARE_PARTICIPANTS_UPDATED 20 = 'SCREEN_SHARE_PARTICIPANTS_UPDATED';