UNPKG

fabric8-planner

Version:
16 lines (15 loc) 484 B
import { OnDestroy } from '@angular/core'; import { ModalService } from '../../services/modal.service'; export declare class ModalComponent implements OnDestroy { private modalService; private modal; private title; private buttonText; private message; private actionKey; eventListeners: any[]; constructor(modalService: ModalService); ngOnDestroy(): void; open(title: string, message: string, buttonText: string): void; doAction(): void; }