Interface CustomVideoCardOptions

interface CustomVideoCardOptions {
    participant: Participant;
    stream: null | MediaStream;
    width: number;
    height: number;
    imageSize?: number;
    doMirror?: string;
    showControls?: boolean;
    showInfo?: boolean;
    name?: string;
    backgroundColor?: string;
    onVideoPress?: (() => void);
    parameters?: any;
}

Properties

participant: Participant
stream: null | MediaStream
width: number
height: number
imageSize?: number
doMirror?: string
showControls?: boolean
showInfo?: boolean
name?: string
backgroundColor?: string
onVideoPress?: (() => void)
parameters?: any