Interface GetVideosOptions

interface GetVideosOptions {
    participants: Participant[];
    allVideoStreams: (Stream | Participant)[];
    oldAllStreams: (Stream | Participant)[];
    adminVidID?: string;
    updateAllVideoStreams: ((streams: (Stream | Participant)[]) => void);
    updateOldAllStreams: ((streams: (Stream | Participant)[]) => void);
}

Properties

participants: Participant[]
allVideoStreams: (Stream | Participant)[]
oldAllStreams: (Stream | Participant)[]
adminVidID?: string
updateAllVideoStreams: ((streams: (Stream | Participant)[]) => void)
updateOldAllStreams: ((streams: (Stream | Participant)[]) => void)