easy-antd-modal
Version:
二次开发, 简化 Ant Design Modal 的使用方式
7 lines (6 loc) • 392 B
TypeScript
import type { ModalProps } from '../modal';
import type { RequireKeys } from '../types';
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;