UNPKG

@xrenders/xflow

Version:

一款功能强大、易用灵活的流程编辑器框架,帮助你轻松构建复杂的工作流和流程产品

20 lines (19 loc) 452 B
import React from 'react'; import './index.less'; interface IPanelProps { disabled?: boolean; nodeType: string; onClose: () => void; node?: { id: string; _isCandidate: boolean; _nodeType: string; _status?: string | undefined; }; children?: any; id: string; data: any; openLogPanel?: boolean; } declare const _default: React.NamedExoticComponent<IPanelProps>; export default _default;