UNPKG

easy-antd-modal

Version:

二次开发, 简化 Ant Design Modal 的使用方式

6 lines (5 loc) 315 B
import { type DialogProps as AntdMDialogProps } from 'antd-mobile'; import { type UseModalEnhancedProps } from '../hooks'; export type DialogProps = Omit<AntdMDialogProps, 'content'> & UseModalEnhancedProps; declare function Modal(props: DialogProps): import("react/jsx-runtime").JSX.Element; export default Modal;