From 8199a1c921252ebee70d9cca7ef88a648e46ce6d Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Wed, 5 Oct 2022 00:07:48 +0200 Subject: [PATCH] chore: lint --- packages/vue-flow/src/utils/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue-flow/src/utils/store.ts b/packages/vue-flow/src/utils/store.ts index 9b99b090..74586430 100644 --- a/packages/vue-flow/src/utils/store.ts +++ b/packages/vue-flow/src/utils/store.ts @@ -1,4 +1,4 @@ -import type { Actions, Connection, CoordinateExtent, Edge, Getters, GraphEdge, GraphNode, Node } from '~/types' +import type { Connection, CoordinateExtent, Edge, Getters, GraphEdge, GraphNode, Node } from '~/types' import { connectionExists, getEdgeId, isEdge, isGraphEdge, parseEdge, parseNode } from '~/utils/graph' export const isDef = (val: T): val is NonNullable => typeof val !== 'undefined'