@zoom/rtms
    Preparing search index...

    Type Alias ParticipantEventCallback

    ParticipantEventCallback: (
        event: "join" | "leave",
        timestamp: number,
        participants: EventParticipantInfo[],
    ) => void

    Callback function for participant join/leave events

    Type Declaration

      • (
            event: "join" | "leave",
            timestamp: number,
            participants: EventParticipantInfo[],
        ): void
      • Parameters

        • event: "join" | "leave"

          The event type ('join' or 'leave')

        • timestamp: number

          Unix timestamp in milliseconds

        • participants: EventParticipantInfo[]

          Array of participant info objects

        Returns void