fix(core): remove ref prop from BaseEdge

This commit is contained in:
braks
2024-02-28 08:01:19 +01:00
committed by Braks
parent 01e3df04a9
commit ba90a48553

View File

@@ -1,4 +1,4 @@
import type { CSSProperties, Component, VNode, VNodeRef } from 'vue'
import type { CSSProperties, Component, VNode } from 'vue'
import type { ClassFunc, ElementData, Position, StyleFunc, Styles } from './flow'
import type { GraphNode } from './node'
import type { EdgeComponent, EdgeTextProps } from './components'
@@ -202,7 +202,6 @@ export interface BaseEdgeProps extends EdgeLabelOptions {
markerEnd?: string
interactionWidth?: number
style?: CSSProperties
ref?: VNodeRef
}
export type BezierEdgeProps = EdgePositions &