"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/base/lib-jitsi-meet/actionTypes.ts" (26 May 2023, 961 Bytes) of package /linux/misc/jitsi-meet-7305.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    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';