primeng
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primeng) [ • 467 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;
acceptEvent?: EventEmitter<any>;
rejectEvent?: EventEmitter<any>;
}