UNPKG

ngx-bootstrap-confirm

Version:

Bootstrap confirm provider for Angular 11+

15 lines (14 loc) 429 B
import { OnInit } from '@angular/core'; import { BsModalRef } from 'ngx-bootstrap/modal'; import { Subject } from 'rxjs'; export declare class NgxBootstrapConfirmComponent implements OnInit { bsModalRef: BsModalRef; onClose: Subject<boolean>; title: string; confirmLabel: string; declineLabel: string; constructor(bsModalRef: BsModalRef); ngOnInit(): void; confirm(): void; decline(): void; }