MediaSFU Angular
    Preparing search index...

    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;
        overlayStyle?: Partial<CSSStyleDeclaration>;
        contentStyle?: Partial<CSSStyleDeclaration>;
        customTemplate?: TemplateRef<any>;
    }
    Index

    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
    overlayStyle?: Partial<CSSStyleDeclaration>
    contentStyle?: Partial<CSSStyleDeclaration>
    customTemplate?: TemplateRef<any>