/** * The type of the action which indicates the SDK is ready to be closed. * * @returns {{ * type: READY_TO_CLOSE * }} */ export const READY_TO_CLOSE = 'READY_TO_CLOSE'; /** * The type of the action which sets the list of known participant IDs which * have an active screen share. * * @returns {{ * type: SCREEN_SHARE_PARTICIPANTS_UPDATED, * participantIds: Array * }} */ export const SCREEN_SHARE_PARTICIPANTS_UPDATED = 'SCREEN_SHARE_PARTICIPANTS_UPDATED';