| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /** * Created by William on 10/07/2017. */ export interface ModalOptions { icon: string; title: string; color?: string; fontColor?: string; height?: string; width?: string; draggable?: boolean; maximizable?: boolean; minimizable?: boolean; fullscreen?: boolean; restoreMaximize?: boolean; backdrop?: boolean; } |