OnShareScreenEvent: { participantUUID: string; timestamp: number; action: "start" | "stop"; withSound: boolean }

Usage:

zoomSdk.onShareScreen((event) => {
console.log(event)
});

Console log:

{
"participantUUID": "xxxxxx"
"timestamp": 1655142791,
"action": "start",
"withSound": false,
}

Type declaration

  • participantUUID: string

    participant id of user sharing screen

  • timestamp: number

    Timestamp at which the user started or stopped screen share

  • action: "start" | "stop"

    Action describing whether user started or stopped

  • withSound: boolean

    Is user sharing audio with screen

Generated using TypeDoc