From 912cba3844dc55f372008a1c2e55e65fb4e6170d Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 18 Dec 2022 21:11:10 +0100 Subject: [PATCH] fix(core): update `EdgeRef` injection type to `SVGElement` Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- packages/core/src/context/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/context/index.ts b/packages/core/src/context/index.ts index 3c5e4d56..df9c4e1e 100644 --- a/packages/core/src/context/index.ts +++ b/packages/core/src/context/index.ts @@ -5,5 +5,5 @@ export const VueFlow: InjectionKey = Symbol('vueFlow') export const NodeId: InjectionKey = Symbol('nodeId') export const NodeRef: InjectionKey> = Symbol('nodeRef') export const EdgeId: InjectionKey = Symbol('edgeId') -export const EdgeRef: InjectionKey> = Symbol('edgeRef') +export const EdgeRef: InjectionKey> = Symbol('edgeRef') export const Slots: InjectionKey = Symbol('slots')