1 /** 2 * Action type to signal the deletion of a list entry. 3 * 4 * { 5 * type: DELETE_RECENT_LIST_ENTRY, 6 * entryId: Object 7 * } 8 */ 9 export const DELETE_RECENT_LIST_ENTRY = 'DELETE_RECENT_LIST_ENTRY'; 10 11 /** 12 * Action type to signal a new addition to the list. 13 * 14 * { 15 * type: _STORE_CURRENT_CONFERENCE, 16 * locationURL: Object 17 * } 18 * 19 * @protected 20 */ 21 export const _STORE_CURRENT_CONFERENCE = '_STORE_CURRENT_CONFERENCE'; 22 23 /** 24 * Action type to signal that a new conference duration info is available. 25 * 26 * { 27 * type: _UPDATE_CONFERENCE_DURATION, 28 * locationURL: Object 29 * } 30 * 31 * @protected 32 */ 33 export const _UPDATE_CONFERENCE_DURATION 34 = '_UPDATE_CONFERENCE_DURATION';