"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7309/react/features/base/known-domains/actionTypes.ts" (31 May 2023, 260 Bytes) of package /linux/misc/jitsi-meet-7309.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. See also the last Fossies "Diffs" side-by-side code changes report for "actionTypes.ts": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 /**
    2  * The type of (redux) action to add known domains to the list of domains known
    3  * to the feature base/known-domains.
    4  *
    5  * {
    6  *     type: ADD_KNOWN_DOMAINS,
    7  *     knownDomains: Array<string>
    8  * }
    9  */
   10 export const ADD_KNOWN_DOMAINS = 'ADD_KNOWN_DOMAINS';