UNPKG

@ant-design/pro-flow

Version:
11 lines (10 loc) 294 B
import type { DrawerProps } from 'antd'; import React from 'react'; interface DataFlowDrawProps extends DrawerProps { resize?: boolean; open: boolean; width: string | number; onClose: () => void; } declare const Inspector: React.FC<DataFlowDrawProps>; export default Inspector;