1 /** 2 * The type of redux action to set Audio Mode device list. 3 * 4 * { 5 * type: _SET_AUDIOMODE_DEVICES, 6 * devices: Array 7 * } 8 * 9 * @protected 10 */ 11 export const _SET_AUDIOMODE_DEVICES = '_SET_AUDIOMODE_DEVICES'; 12 13 /** 14 * The type of redux action to set Audio Mode module's subscriptions. 15 * 16 * { 17 * type: _SET_AUDIOMODE_SUBSCRIPTIONS, 18 * subscriptions: Array|undefined 19 * } 20 * 21 * @protected 22 */ 23 export const _SET_AUDIOMODE_SUBSCRIPTIONS = '_SET_AUDIOMODE_SUBSCRIPTIONS';