Interface BreakoutRoomsModalOptions

interface BreakoutRoomsModalOptions {
    isVisible: boolean;
    parameters: BreakoutRoomsModalParameters;
    position?:
        | "topLeft"
        | "topRight"
        | "bottomLeft"
        | "bottomRight";
    backgroundColor?: string;
    onBreakoutRoomsClose: (() => void);
}

Properties

isVisible: boolean
position?:
    | "topLeft"
    | "topRight"
    | "bottomLeft"
    | "bottomRight"
backgroundColor?: string
onBreakoutRoomsClose: (() => void)