easy-antd-modal
Version:
二次开发, 简化 Ant Design Modal 的使用方式
7 lines (6 loc) • 408 B
TypeScript
import type { RequireKeys } from '@wuxh/use-modal-enhanced';
import type { ModalProps } from '../modal';
export type DragModalProps = RequireKeys<ModalProps, 'title'>;
/** @see [easy-antd-modal#DragModal](https://github.com/Wxh16144/easy-antd-modal/blob/master/src/drag-modal/index.tsx) */
declare function DragModal(props: DragModalProps): import("react/jsx-runtime").JSX.Element;
export default DragModal;