Merge branch 'next' of github.com:xyflow/xyflow into next
This commit is contained in:
@@ -5,10 +5,19 @@ export type BaseEdgeProps = Pick<
|
||||
'interactionWidth' | 'label' | 'labelStyle' | 'style'
|
||||
> & {
|
||||
id?: string;
|
||||
/** SVG path of the edge */
|
||||
path: string;
|
||||
/** The x coordinate of the label */
|
||||
labelX?: number;
|
||||
/** The y coordinate of the label */
|
||||
labelY?: number;
|
||||
/** Marker at start of edge
|
||||
* @example 'url(#arrow)'
|
||||
*/
|
||||
markerStart?: string;
|
||||
/** Marker at end of edge
|
||||
* @example 'url(#arrow)'
|
||||
*/
|
||||
markerEnd?: string;
|
||||
class?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user