Files
copilot-toolbox-template-123/node_modules/@ant-design/pro-layout/lib/components/Help/ProHelpDrawer.d.ts
2026-01-09 14:52:46 +00:00

16 lines
622 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 { DrawerProps } from 'antd';
import type { ProHelpPanelProps } from './ProHelpPanel';
export type ProHelpDrawerProps = {
/**
* Ant Design Drawer 组件的 Props可以传递一些选项如位置、大小、关闭方式等等。
*/
drawerProps: DrawerProps;
} & Omit<ProHelpPanelProps, 'onClose'>;
/**
* 渲染一个抽屉,其中显示了一个 ProHelpPanel。
* @param drawerProps 要传递给 Drawer 组件的属性。
* @param props 要传递给 ProHelpPanel 组件的属性。
*/
export declare const ProHelpDrawer: React.FC<ProHelpDrawerProps>;