UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

11 lines (10 loc) 459 B
import { ReactNode } from 'react'; import { DrawerTransitionName, ModalProps } from './Modal'; export declare const suffixCls = "modal"; export declare type confirmProps = { iconType?: string; type?: string; children?: any; }; export declare function normalizeProps(props: ModalProps & confirmProps | ReactNode): ModalProps & confirmProps; export declare function toUsefulDrawerTransitionName(drawerTransitionName?: string): DrawerTransitionName;