Interface BackgroundModalOptions

interface BackgroundModalOptions {
    isVisible: boolean;
    parameters: BackgroundModalParameters;
    position: string;
    backgroundColor: string;
    onClose: (() => void);
    overlayStyle?: Partial<CSSStyleDeclaration>;
    contentStyle?: Partial<CSSStyleDeclaration>;
    customTemplate?: any;
}

Properties

isVisible: boolean
position: string
backgroundColor: string
onClose: (() => void)
overlayStyle?: Partial<CSSStyleDeclaration>
contentStyle?: Partial<CSSStyleDeclaration>
customTemplate?: any