MediaSFU Vue
    Preparing search index...

    Interface AddVideosGridParameters

    interface AddVideosGridParameters {
        eventType: EventType;
        updateAddAltGrid: (addAltGrid: boolean) => void;
        ref_participants: Participant[];
        islevel: string;
        videoAlreadyOn: boolean;
        localStreamVideo: MediaStream | null;
        keepBackground: boolean;
        virtualStream: MediaStream | null;
        forceFullDisplay: boolean;
        otherGridStreams: RenderableComponent<Record<string, unknown>>[][];
        updateOtherGridStreams: (
            otherGridStreams: RenderableComponent<Record<string, unknown>>[][],
        ) => void;
        updateMiniCardsGrid: (
            options: {
                rows: number;
                cols: number;
                defal: boolean;
                actualRows: number;
                parameters: AddVideosGridParameters;
            },
        ) => Promise<void>;
        customVideoCard?: unknown;
        customAudioCard?: unknown;
        customMiniCard?: unknown;
        videoCardComponent?: any;
        audioCardComponent?: any;
        miniCardComponent?: any;
        getUpdatedAllParams: () => AddVideosGridParameters;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    eventType: EventType
    updateAddAltGrid: (addAltGrid: boolean) => void
    ref_participants: Participant[]
    islevel: string
    videoAlreadyOn: boolean
    localStreamVideo: MediaStream | null
    keepBackground: boolean
    virtualStream: MediaStream | null
    forceFullDisplay: boolean
    otherGridStreams: RenderableComponent<Record<string, unknown>>[][]
    updateOtherGridStreams: (
        otherGridStreams: RenderableComponent<Record<string, unknown>>[][],
    ) => void
    updateMiniCardsGrid: (
        options: {
            rows: number;
            cols: number;
            defal: boolean;
            actualRows: number;
            parameters: AddVideosGridParameters;
        },
    ) => Promise<void>
    customVideoCard?: unknown
    customAudioCard?: unknown
    customMiniCard?: unknown
    videoCardComponent?: any
    audioCardComponent?: any
    miniCardComponent?: any
    getUpdatedAllParams: () => AddVideosGridParameters