confirmation.d.ts 417 B

12345678910111213141516
  1. import { EventEmitter } from '@angular/core';
  2. export 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. acceptVisible?: boolean;
  12. rejectVisible?: boolean;
  13. blockScroll?: boolean;
  14. acceptEvent?: EventEmitter<any>;
  15. rejectEvent?: EventEmitter<any>;
  16. }