Interface ParticipantsModalOptions

interface ParticipantsModalOptions {
    isParticipantsModalVisible: boolean;
    onParticipantsClose: (() => void);
    onParticipantsFilterChange: ((filter: string) => void);
    participantsCounter: number;
    onMuteParticipants?: typeof MuteParticipants;
    onMessageParticipants?: typeof MessageParticipants;
    onRemoveParticipants?: typeof RemoveParticipants;
    RenderParticipantList?: HTMLElement;
    RenderParticipantListOthers?: HTMLElement;
    parameters: ParticipantsModalParameters;
    backgroundColor?: string;
    position?: string;
}

Properties

isParticipantsModalVisible: boolean
onParticipantsClose: (() => void)
onParticipantsFilterChange: ((filter: string) => void)
participantsCounter: number
onMuteParticipants?: typeof MuteParticipants
onMessageParticipants?: typeof MessageParticipants
onRemoveParticipants?: typeof RemoveParticipants
RenderParticipantList?: HTMLElement
RenderParticipantListOthers?: HTMLElement
backgroundColor?: string
position?: string
MMNEPVFCICPMFPCPTTAAATR