1 /** 2 * The type of the action which signals to update the current known state of the 3 * shared video. 4 * 5 * { 6 * type: SET_SHARED_VIDEO_STATUS, 7 * status: string 8 * } 9 */ 10 export const SET_SHARED_VIDEO_STATUS = 'SET_SHARED_VIDEO_STATUS'; 11 12 /** 13 * The type of the action which signals to reset the current known state of the 14 * shared video. 15 * 16 * { 17 * type: RESET_SHARED_VIDEO_STATUS, 18 * } 19 */ 20 export const RESET_SHARED_VIDEO_STATUS = 'RESET_SHARED_VIDEO_STATUS'; 21 22 /** 23 * The type of the action which signals to disable or enable the shared video 24 * button. 25 * 26 * { 27 * type: SET_DISABLE_BUTTON 28 * } 29 */ 30 export const SET_DISABLE_BUTTON = 'SET_DISABLE_BUTTON';