Interface IDialogOptions

interface IDialogOptions {
    autoClose?: boolean;
    cancelSubDialogs?: boolean;
    eventsEnabled?: boolean;
    livePreview: boolean | (keyof ILivePreviewOptions);
    popup: boolean;
    title: string;
    toggleDialog: boolean;
}

Properties

autoClose?: boolean
cancelSubDialogs?: boolean
eventsEnabled?: boolean
livePreview: boolean | (keyof ILivePreviewOptions)
popup: boolean
title: string
toggleDialog: boolean