Interface BackgroundModalOptions

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

Properties

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