fix(types): remove sourceX/Y, targetX/Y attributes from edge type

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-16 17:55:14 +01:00
parent fc19ddec46
commit 6c2bdcdae6

View File

@@ -6,10 +6,6 @@ export interface Edge<T = any> {
type?: string
source: ElementId
target: ElementId
sourceX: number
sourceY: number
targetX: number
targetY: number
sourceHandle?: ElementId | null
targetHandle?: ElementId | null
selected?: boolean