"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7309/react/features/base/app/actionTypes.ts" (31 May 2023, 429 Bytes) of package /linux/misc/jitsi-meet-7309.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 a specific App will mount (in
    3  * React terms).
    4  *
    5  * {
    6  *     type: APP_WILL_MOUNT,
    7  *     app: App
    8  * }
    9  */
   10 export const APP_WILL_MOUNT = 'APP_WILL_MOUNT';
   11 
   12 /**
   13  * The type of (redux) action which signals that a specific App will unmount (in
   14  * React terms).
   15  *
   16  * {
   17  *     type: APP_WILL_UNMOUNT,
   18  *     app: App
   19  * }
   20  */
   21 export const APP_WILL_UNMOUNT = 'APP_WILL_UNMOUNT';