All files / src/modal modal-options.ts

0% Statements 0/3
100% Branches 0/0
100% Functions 0/0
0% Lines 0/2
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;
}