"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/dynamic-branding/actionTypes.ts" (26 May 2023, 527 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  * Action used to set custom user properties.
    3  */
    4 export const SET_DYNAMIC_BRANDING_DATA = 'SET_DYNAMIC_BRANDING_DATA';
    5 
    6 /**
    7  * Action used to signal the customization failed.
    8  */
    9 export const SET_DYNAMIC_BRANDING_FAILED = 'SET_DYNAMIC_BRANDING_FAILED';
   10 
   11 /**
   12  * Action used to signal the branding elements are ready to be displayed
   13  */
   14 export const SET_DYNAMIC_BRANDING_READY = 'SET_DYNAMIC_BRANDING_READY';
   15 
   16 /**
   17  * Action used to unset branding elements
   18  */
   19 export const UNSET_DYNAMIC_BRANDING = 'UNSET_DYNAMIC_BRANDING';