You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
654 B
24 lines
654 B
import { EventEmitter } from '@angular/core';
|
|
export interface Confirmation {
|
|
message?: string;
|
|
key?: string;
|
|
icon?: string;
|
|
header?: string;
|
|
accept?: Function;
|
|
reject?: Function;
|
|
acceptLabel?: string;
|
|
rejectLabel?: string;
|
|
acceptIcon?: string;
|
|
rejectIcon?: string;
|
|
acceptVisible?: boolean;
|
|
rejectVisible?: boolean;
|
|
blockScroll?: boolean;
|
|
closeOnEscape?: boolean;
|
|
dismissableMask?: boolean;
|
|
defaultFocus?: string;
|
|
acceptButtonStyleClass?: string;
|
|
rejectButtonStyleClass?: string;
|
|
target?: EventTarget;
|
|
acceptEvent?: EventEmitter<any>;
|
|
rejectEvent?: EventEmitter<any>;
|
|
}
|