import { ObjectInterface } from '../../script/index' export interface DialogInterface { title: string|Function width?: string isShowBtn?: boolean isShowBg?: boolean isShowDialog?: boolean|Function escClose?: boolean clickModalClose?: boolean dialogOperates?: OperatesInterface[] isCloseLeft?: boolean loading?: ObjectInterface showClose?: boolean isDrawer?: boolean direction?: string withHeader?: boolean isCustomTitle?: boolean secondTitle?: string fullscreen?: boolean modalClass?: string } export interface OperatesInterface { type: string size?: string icon?: string text?: boolean disabled?: Function btnLoading?: Function plain?: boolean method: Function label: Function show?: Function }