"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/feedback/actionTypes.ts" (2 Jun 2023, 632 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.

    1 /**
    2  * The type of the action which signals feedback was closed without submitting.
    3  *
    4  * {
    5  *     type: CANCEL_FEEDBACK,
    6  *     message: string,
    7  *     score: number
    8  * }
    9  */
   10 export const CANCEL_FEEDBACK = 'CANCEL_FEEDBACK';
   11 
   12 /**
   13  * The type of the action which signals feedback failed to be recorded.
   14  *
   15  * {
   16  *     type: SUBMIT_FEEDBACK_ERROR
   17  *     error: string
   18  * }
   19  */
   20 export const SUBMIT_FEEDBACK_ERROR = 'SUBMIT_FEEDBACK_ERROR';
   21 
   22 /**
   23  * The type of the action which signals feedback has been recorded.
   24  *
   25  * {
   26  *     type: SUBMIT_FEEDBACK_SUCCESS,
   27  * }
   28  */
   29 export const SUBMIT_FEEDBACK_SUCCESS = 'SUBMIT_FEEDBACK_SUCCESS';