Interface BackgroundModalOptions

interface BackgroundModalOptions {
    isVisible: boolean;
    parameters: BackgroundModalParameters;
    position: string;
    backgroundColor: string;
    onClose: (() => void);
}

Properties

isVisible: boolean
position: string
backgroundColor: string
onClose: (() => void)