From ec44dca56a3deff42ee9a105eec04a1598310119 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Fri, 7 Apr 2023 21:55:19 +0200 Subject: [PATCH] feat(core): add `getConnectedNodes` util Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- packages/core/src/auto-imports.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/auto-imports.d.ts b/packages/core/src/auto-imports.d.ts index 2d60918e..ef6464a1 100644 --- a/packages/core/src/auto-imports.d.ts +++ b/packages/core/src/auto-imports.d.ts @@ -71,6 +71,7 @@ declare global { const getBoundsofRects: typeof import('./utils/graph')['getBoundsofRects'] const getClosestHandle: typeof import('./utils/handle')['getClosestHandle'] const getConnectedEdges: typeof import('./utils/graph')['getConnectedEdges'] + const getConnectedNodes: typeof import('./utils/graph')['getConnectedNodes'] const getConnectionStatus: typeof import('./utils/handle')['getConnectionStatus'] const getCurrentInstance: typeof import('vue')['getCurrentInstance'] const getCurrentScope: typeof import('vue')['getCurrentScope']