UNPKG

568 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2export interface Confirmation {
3 message?: string;
4 key?: string;
5 icon?: string;
6 header?: string;
7 accept?: Function;
8 reject?: Function;
9 acceptLabel?: string;
10 rejectLabel?: string;
11 acceptIcon?: string;
12 rejectIcon?: string;
13 acceptVisible?: boolean;
14 rejectVisible?: boolean;
15 blockScroll?: boolean;
16 defaultFocus?: string;
17 acceptButtonStyleClass?: string;
18 rejectButtonStyleClass?: string;
19 acceptEvent?: EventEmitter<any>;
20 rejectEvent?: EventEmitter<any>;
21}