Files
copilot-toolbox-sdfdsfds/node_modules/@ant-design/pro-layout/es/components/Help/ProHelpModal.d.ts
2026-01-16 01:51:36 +00:00

16 lines
623 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/// <reference types="react" />
import type { ModalProps } from 'antd';
import type { ProHelpPanelProps } from './ProHelpPanel';
export type ProHelpModalProps = {
/**
* Ant Design Modal 组件的 props可以传递一些选项如位置、大小、关闭方式等等。
*/
modalProps?: ModalProps;
} & Omit<ProHelpPanelProps, 'onClose'>;
/**
* 渲染一个模态对话框,其中显示了一个 ProHelpPanel。
* @param modalProps 要传递给 Modal 组件的属性。
* @param props 要传递给 ProHelpPanel 组件的属性。
*/
export declare const ProHelpModal: React.FC<ProHelpModalProps>;