22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
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;
|
|
defaultFocus?: string;
|
|
acceptButtonStyleClass?: string;
|
|
rejectButtonStyleClass?: string;
|
|
acceptEvent?: EventEmitter<any>;
|
|
rejectEvent?: EventEmitter<any>;
|
|
}
|