- import { EventEmitter } from '@angular/core';
- export interface Confirmation {
- message?: string;
- key?: string;
- icon?: string;
- header?: string;
- accept?: Function;
- reject?: Function;
- acceptLabel?: string;
- rejectLabel?: string;
- acceptVisible?: boolean;
- rejectVisible?: boolean;
- blockScroll?: boolean;
- acceptEvent?: EventEmitter<any>;
- rejectEvent?: EventEmitter<any>;
- }
|