UNPKG

easy-antd-modal

Version:

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

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