@zoom/rtms
    Preparing search index...

    Type Alias SharingEventCallback

    SharingEventCallback: (
        event: "start" | "stop",
        timestamp: number,
        userId?: number,
        userName?: string,
    ) => void

    Callback function for sharing start/stop events

    Type Declaration

      • (
            event: "start" | "stop",
            timestamp: number,
            userId?: number,
            userName?: string,
        ): void
      • Parameters

        • event: "start" | "stop"

          The event type ('start' or 'stop')

        • timestamp: number

          Unix timestamp in milliseconds

        • OptionaluserId: number

          The user ID (only for 'start' events)

        • OptionaluserName: string

          The display name (only for 'start' events)

        Returns void