Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 02:20:32 +00:00
parent a4605e311a
commit 71de1506ca
28603 changed files with 2179459 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/// <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>;