nsrtm-gestionarchivo-npm-prueba2
Version:
Proyecto de Libreria Frontend para la Gestión de Archivos
21 lines (20 loc) • 857 B
TypeScript
/**
* Component de dialogo de componente
*/
import { OnInit } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { AlertService } from '../alert/alert.service';
import { ConfirmOptions } from './dialog-confirm.service';
import * as i0 from "@angular/core";
export declare class DialogConfirmComponent implements OnInit {
activeModal: NgbActiveModal;
private alertService;
options: ConfirmOptions;
loading: boolean;
constructor(activeModal: NgbActiveModal, alertService: AlertService);
ngOnInit(): void;
onOk(): void;
onClose(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DialogConfirmComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DialogConfirmComponent, "app-dialog-confirm", never, { "options": "options"; }, {}, never, never, false>;
}