UNPKG

fundamental-ngx

Version:

SAP Fiori Fundamentals, implemented in Angular

16 lines (15 loc) 536 B
import { ElementRef, OnInit } from '@angular/core'; import { ModalRef } from './modal-ref'; import { AbstractFdNgxClass } from '../../utils/abstract-fd-ngx-class'; export declare class ModalBackdrop extends AbstractFdNgxClass implements OnInit { private elRef; private modalRef; backdropClass: string; backdropClickCloseable: boolean; overlayMain: boolean; overlayModal: boolean; constructor(elRef: ElementRef, modalRef: ModalRef); ngOnInit(): void; _setProperties(): void; closeModal(): void; }