OnShareComputerAudioEvent: { participantUUID: string; timestamp: number; action: "start" | "stop" }

Usage:

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

Console log:

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

Type declaration

  • participantUUID: string

    participant id of user sharing audio

  • timestamp: number

    Timestamp at which the user started or stopped audio share

  • action: "start" | "stop"

    Action describing whether user started or stopped

Generated using TypeDoc