"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/recent-list/actionTypes.ts" (2 Jun 2023, 696 Bytes) of package /linux/misc/jitsi-meet-7315.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. See also the last Fossies "Diffs" side-by-side code changes report for "actionTypes.ts": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 /**
    2  * Action type to signal the deletion of a list entry.
    3  *
    4  * {
    5  *     type: DELETE_RECENT_LIST_ENTRY,
    6  *     entryId: Object
    7  * }
    8  */
    9 export const DELETE_RECENT_LIST_ENTRY = 'DELETE_RECENT_LIST_ENTRY';
   10 
   11 /**
   12  * Action type to signal a new addition to the list.
   13  *
   14  * {
   15  *     type: _STORE_CURRENT_CONFERENCE,
   16  *     locationURL: Object
   17  * }
   18  *
   19  * @protected
   20  */
   21 export const _STORE_CURRENT_CONFERENCE = '_STORE_CURRENT_CONFERENCE';
   22 
   23 /**
   24  * Action type to signal that a new conference duration info is available.
   25  *
   26  * {
   27  *     type: _UPDATE_CONFERENCE_DURATION,
   28  *     locationURL: Object
   29  * }
   30  *
   31  * @protected
   32  */
   33 export const _UPDATE_CONFERENCE_DURATION
   34     = '_UPDATE_CONFERENCE_DURATION';