Interface ControlMediaOptions

interface ControlMediaOptions {
    participantId: string;
    participantName: string;
    type:
        | "video"
        | "all"
        | "audio"
        | "screenshare";
    socket: Socket<DefaultEventsMap, DefaultEventsMap>;
    coHostResponsibility: CoHostResponsibility[];
    participants: Participant[];
    member: string;
    islevel: string;
    showAlert?: ShowAlert;
    coHost: string;
    roomName: string;
}

Properties

participantId: string
participantName: string
type:
    | "video"
    | "all"
    | "audio"
    | "screenshare"
socket: Socket<DefaultEventsMap, DefaultEventsMap>
coHostResponsibility: CoHostResponsibility[]
participants: Participant[]
member: string
islevel: string
showAlert?: ShowAlert
coHost: string
roomName: string