1 /** 2 * The type of Redux action which signals that {@link JitsiMeetJS} was disposed. 3 * 4 * { 5 * type: LIB_DID_DISPOSE 6 * } 7 */ 8 export const LIB_DID_DISPOSE = 'LIB_DID_DISPOSE'; 9 10 /** 11 * The type of Redux action which signals that {@link JitsiMeetJS.init()} was 12 * invoked and completed successfully. 13 * 14 * { 15 * type: LIB_DID_INIT 16 * } 17 */ 18 export const LIB_DID_INIT = 'LIB_DID_INIT'; 19 20 /** 21 * Action to signal that lib-jitsi-meet initialized failed with error. 22 * 23 * { 24 * type: LIB_INIT_ERROR, 25 * error: Error 26 * } 27 */ 28 export const LIB_INIT_ERROR = 'LIB_INIT_ERROR'; 29 30 /** 31 * The type of Redux action which signals that {@link JitsiMeetJS} will be 32 * disposed. 33 * 34 * { 35 * type: LIB_WILL_DISPOSE 36 * } 37 */ 38 export const LIB_WILL_DISPOSE = 'LIB_WILL_DISPOSE'; 39 40 /** 41 * The type of Redux action which signals that {@link JitsiMeetJS.init()} will 42 * be invoked. 43 * 44 * { 45 * type: LIB_WILL_INIT 46 * } 47 */ 48 export const LIB_WILL_INIT = 'LIB_WILL_INIT';