"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/base/logging/actionTypes.ts" (26 May 2023, 479 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 stores the log collector that will be
    3  * submitting the logs to CallStats.
    4  *
    5  * {
    6  *     type: SET_LOG_COLLECTOR,
    7  *     logCollector: Logger.LogCollector
    8  * }
    9  */
   10 export const SET_LOG_COLLECTOR = 'SET_LOG_COLLECTOR';
   11 
   12 /**
   13  * The type of redux action which sets the configuration of the feature
   14  * base/logging.
   15  *
   16  * {
   17  *     type: SET_LOGGING_CONFIG,
   18  *     config: Object
   19  * }
   20  */
   21 export const SET_LOGGING_CONFIG = 'SET_LOGGING_CONFIG';