"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/mobile/watchos/actionTypes.ts" (2 Jun 2023, 636 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. See also the last Fossies "Diffs" side-by-side code changes report for "actionTypes.ts": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 /**
    2  * See {@link setConferenceTimestamp} for more details.
    3  * {
    4  *      type: SET_CONFERENCE_TIMESTAMP,
    5  *      conferenceTimestamp: number
    6  * }
    7  */
    8 export const SET_CONFERENCE_TIMESTAMP = Symbol('WATCH_OS_SET_CONFERENCE_TIMESTAMP');
    9 
   10 /**
   11  * See {@link setSessionId} action for more details.
   12  * {
   13  *     type: SET_SESSION_ID,
   14  *     sessionID: number
   15  * }
   16  */
   17 export const SET_SESSION_ID = Symbol('WATCH_OS_SET_SESSION_ID');
   18 
   19 /**
   20  * See {@link setWatchReachable} for more details.
   21  * {
   22  *     type: SET_WATCH_REACHABLE,
   23  *     watchReachable: boolean
   24  * }
   25  */
   26 export const SET_WATCH_REACHABLE = Symbol('WATCH_OS_SET_WATCH_REACHABLE');