UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

11 lines (10 loc) 511 B
import { type EdgeProps } from '@xyflow/react'; interface DefaultEdgeData { readOnly?: boolean; } type DefaultWorkflowEdgeProps = EdgeProps & { data?: DefaultEdgeData; }; declare function DefaultWorkflowEdgeComponent({ sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, style, markerEnd, }: DefaultWorkflowEdgeProps): import("react/jsx-runtime").JSX.Element; export declare const DefaultWorkflowEdge: import("react").MemoExoticComponent<typeof DefaultWorkflowEdgeComponent>; export {};