source: trip-planner-front/node_modules/primeng/api/confirmation.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 654 bytes
Line 
1import { EventEmitter } from '@angular/core';
2export 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 acceptIcon?: string;
12 rejectIcon?: string;
13 acceptVisible?: boolean;
14 rejectVisible?: boolean;
15 blockScroll?: boolean;
16 closeOnEscape?: boolean;
17 dismissableMask?: boolean;
18 defaultFocus?: string;
19 acceptButtonStyleClass?: string;
20 rejectButtonStyleClass?: string;
21 target?: EventTarget;
22 acceptEvent?: EventEmitter<any>;
23 rejectEvent?: EventEmitter<any>;
24}
Note: See TracBrowser for help on using the repository browser.