"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/base/dialog/actionTypes.ts" (26 May 2023, 712 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 closes a dialog
    3  *
    4  * {
    5  *     type: HIDE_DIALOG
    6  * }
    7  */
    8 export const HIDE_DIALOG = 'HIDE_DIALOG';
    9 
   10 /**
   11  * The type of Redux action which closes a sheet.
   12  *
   13  * {
   14  *     type: HIDE_SHEET
   15  * }
   16  */
   17 export const HIDE_SHEET = 'HIDE_SHEET';
   18 
   19 /**
   20  * The type of Redux action which begins a request to open a dialog.
   21  *
   22  * {
   23  *     type: OPEN_DIALOG,
   24  *     component: React.Component,
   25  *     props: PropTypes
   26  * }
   27  *
   28  */
   29 export const OPEN_DIALOG = 'OPEN_DIALOG';
   30 
   31 /**
   32  * The type of Redux action which begins a request to open a sheet.
   33  *
   34  * {
   35  *     type: OPEN_SHEET,
   36  *     component: React.Component,
   37  *     props: PropTypes
   38  * }
   39  *
   40  */
   41 export const OPEN_SHEET = 'OPEN_SHEET';