UNPKG

@matthewgapp/solidjs-flow

Version:

React Flow - A highly customizable React library for building node-based editors and interactive flow charts.

17 lines 900 B
import { EdgePosition } from '@xyflow/system'; import type { EdgeWrapperProps, Edge } from '../../types/edges'; type EdgeUpdateAnchorsProps<EdgeType extends Edge = Edge> = { edge: EdgeType; isUpdatable: boolean | 'source' | 'target'; edgeUpdaterRadius: EdgeWrapperProps['edgeUpdaterRadius']; sourceHandleId: Edge['sourceHandle']; targetHandleId: Edge['targetHandle']; onEdgeUpdate: EdgeWrapperProps<EdgeType>['onEdgeUpdate']; onEdgeUpdateStart: EdgeWrapperProps<EdgeType>['onEdgeUpdateStart']; onEdgeUpdateEnd: EdgeWrapperProps<EdgeType>['onEdgeUpdateEnd']; setUpdateHover: (hover: boolean) => void; setUpdating: (updating: boolean) => void; } & EdgePosition; export declare function EdgeUpdateAnchors<EdgeType extends Edge = Edge>(p: EdgeUpdateAnchorsProps<EdgeType>): import("solid-js").JSX.Element; export {}; //# sourceMappingURL=EdgeUpdateAnchors.d.ts.map