UNPKG

710 BTypeScriptView Raw
1/// <reference types="react" />
2import { ReactNode } from 'react';
3interface IDialogPropTypes {
4 className?: string;
5 style?: {};
6 mask?: boolean;
7 children?: any;
8 afterClose?: () => void;
9 onClose?: (e: any) => void;
10 closable?: boolean;
11 maskClosable?: boolean;
12 visible?: boolean;
13 title?: ReactNode;
14 footer?: ReactNode;
15 transitionName?: string;
16 maskTransitionName?: string;
17 animation?: any;
18 maskAnimation?: any;
19 wrapStyle?: {};
20 bodyStyle?: {};
21 maskStyle?: {};
22 prefixCls?: string;
23 wrapClassName?: string;
24 onAnimateLeave?: () => void;
25 zIndex?: number;
26 maskProps?: any;
27 wrapProps?: any;
28}
29export default IDialogPropTypes;