UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Join the chat at https://gitter.im/primefaces/primeng](https://badges.gitter.im/primefaces/primeng.svg)](https://gitter.im/primefaces/primeng?ut

16 lines (15 loc) 389 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; acceptVisible?: boolean; rejectVisible?: boolean; acceptEvent?: EventEmitter<any>; rejectEvent?: EventEmitter<any>; }