"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/etherpad/actionTypes.ts" (26 May 2023, 598 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 the action which signals document editing has stopped or started.
    3  *
    4  * {
    5  *     type: SET_DOCUMENT_EDITING_STATUS
    6  * }
    7  */
    8 export const SET_DOCUMENT_EDITING_STATUS = 'SET_DOCUMENT_EDITING_STATUS';
    9 
   10 /**
   11  * The type of the action which updates the shared document URL.
   12  *
   13  * {
   14  *     type: SET_DOCUMENT_URL
   15  * }
   16  */
   17 export const SET_DOCUMENT_URL = 'SET_DOCUMENT_URL';
   18 
   19 /**
   20  * The type of the action which signals to start or stop editing a shared
   21  * document.
   22  *
   23  * {
   24  *     type: TOGGLE_DOCUMENT_EDITING
   25  * }
   26  */
   27 export const TOGGLE_DOCUMENT_EDITING = 'TOGGLE_DOCUMENT_EDITING';