@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
13 lines • 488 B
TypeScript
import { default as React, FC } from 'react';
import { Node } from 'reactflow';
export interface WorkflowEventHandlersProps {
onNodesChange: (nodes: Node[]) => void;
children: React.ReactElement<any>;
reactFlowInstance: any;
}
/**
* WorkflowEventHandlers component for handling drag and drop events
* Wraps ReactFlow with event handling logic
*/
export declare const WorkflowEventHandlers: FC<WorkflowEventHandlersProps>;
//# sourceMappingURL=WorkflowEventHandlers.d.ts.map