MediaSFU Shared
    Preparing search index...

    Interface BanParticipantParameters<TParameters, TParticipant>

    interface BanParticipantParameters<
        TParameters = unknown,
        TParticipant extends { name?: string | null } = Participant,
    > {
        activeNames: string[];
        dispActiveNames: string[];
        participants: TParticipant[];
        updateParticipants: (participants: TParticipant[]) => void;
        reorderStreams: BanParticipantReorderType<TParameters>;
        [key: string]: any;
    }

    Type Parameters

    • TParameters = unknown
    • TParticipant extends { name?: string | null } = Participant

    Indexable

    • [key: string]: any
    Index

    Properties

    activeNames: string[]
    dispActiveNames: string[]
    participants: TParticipant[]
    updateParticipants: (participants: TParticipant[]) => void