1 /** 2 * The type of the Redux action which signals that a suspend was detected. 3 * 4 * { 5 * type: SUSPEND_DETECTED 6 * } 7 * @public 8 */ 9 export const SUSPEND_DETECTED = 'SUSPEND_DETECTED'; 10 11 /** 12 * The type of the Redux action which signals that a transport needs to be stored. 13 * 14 * { 15 * type: SET_TRANSPORT 16 * } 17 * @public 18 */ 19 export const SET_TRANSPORT = 'SET_TRANSPORT';