@ant-design/pro-flow
Version:
A React based Flow components
9 lines (8 loc) • 392 B
TypeScript
/// <reference types="react" />
import { FlowEditorAppProps } from './FlowEditor';
import { StoreUpdaterProps } from './StoreUpdater';
export interface FlowEditorProps extends StoreUpdaterProps, FlowEditorAppProps {
devtools?: boolean;
}
declare const FlowEditor: import("react").ForwardRefExoticComponent<FlowEditorProps & import("react").RefAttributes<any>>;
export default FlowEditor;