fabric8-planner
Version:
A planner front-end for Fabric8.
16 lines (15 loc) • 484 B
TypeScript
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;
}