UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

28 lines (26 loc) 605 B
/** * Interface representing the configuration for updating a broadcast. */ type BroadcastUpdateConfig = { /** * The ID of the broadcast to update. */ broadcastId: string; /** * Whether to include audio in the broadcast. */ hasAudio?: boolean; /** * Whether to include video in the broadcast. */ hasVideo?: boolean; /** * The ID of a stream to add to the broadcast. */ addStream?: string; /** * The ID of a stream to remove from the broadcast. */ removeStream?: string; }; export type { BroadcastUpdateConfig };