UNPKG

moppium-react-flow-renderer

Version:

[![react-flow](https://user-images.githubusercontent.com/2857535/95224198-b2540000-07fa-11eb-832d-361d72d60345.jpg)](https://reactflow.dev)

19 lines (18 loc) 728 B
import React, { CSSProperties } from 'react'; import { Edge, Node, ConnectionLineType, ConnectionLineComponent, OnEdgeUpdateFunc } from '../../types'; interface EdgeRendererProps { edgeTypes: any; connectionLineType: ConnectionLineType; connectionLineStyle?: CSSProperties; onElementClick?: (event: React.MouseEvent, element: Node | Edge) => void; arrowHeadColor: string; markerEndId?: string; connectionLineComponent?: ConnectionLineComponent; onlyRenderVisibleElements: boolean; onEdgeUpdate?: OnEdgeUpdateFunc; } declare const _default: React.MemoExoticComponent<{ (props: EdgeRendererProps): JSX.Element | null; displayName: string; }>; export default _default;