import { EventEmitter } from "@angular/core"; import { ModalEventType } from "./modal-event-type.model"; import { SizeModalEnum } from "./size-modal-enum"; export interface ModalBase { title: string; message: string; labelConfirmationOkCustom: string; labelConfirmationKoCustom: string; showOnlyConfirmationOk: boolean; backDropClosed: boolean; showBackDrop: boolean; centered: boolean; scrollable: boolean; fullScreen: boolean; keyboardClose: boolean; size: SizeModalEnum; onEventSelectOption?: EventEmitter; eventSelectOption(eventType: ModalEventType): void; }