UNPKG

@matthewgapp/solidjs-flow

Version:

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

14 lines 602 B
import { Position } from '@xyflow/system'; import { JSX } from 'solid-js'; export interface EdgeAnchorProps extends JSX.CircleSVGAttributes<SVGCircleElement> { position: Position; centerX: number; centerY: number; radius?: number; onMouseDown: JSX.CircleSVGAttributes<SVGCircleElement>["onMouseDown"]; onMouseEnter: JSX.CircleSVGAttributes<SVGCircleElement>["onMouseEnter"]; onMouseOut: JSX.CircleSVGAttributes<SVGCircleElement>["onMouseOut"]; type: string; } export declare function EdgeAnchor(_p: EdgeAnchorProps): JSX.Element; //# sourceMappingURL=EdgeAnchor.d.ts.map