From ae2867976c1d0388138a11f8c312ea86e5d20fdf Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Fri, 25 Mar 2022 23:08:49 +0100 Subject: [PATCH] chore: fix lint issues --- src/types/changes.ts | 2 +- src/utils/graph.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/types/changes.ts b/src/types/changes.ts index 57df3e3d..057d2ff8 100644 --- a/src/types/changes.ts +++ b/src/types/changes.ts @@ -1,5 +1,5 @@ import { XYPosition, Dimensions } from './flow' -import { NodeHandleBounds, Node, GraphNode, CoordinateExtent } from './node' +import { NodeHandleBounds, Node } from './node' import { Edge } from './edge' export type NodeDimensionChange = { diff --git a/src/utils/graph.ts b/src/utils/graph.ts index 6184f701..9ce6bb21 100644 --- a/src/utils/graph.ts +++ b/src/utils/graph.ts @@ -16,8 +16,9 @@ import { Rect, Transform, XYPosition, - XYZPosition, Getters -} from "~/types"; + XYZPosition, + Getters, +} from '~/types' import { useWindow } from '~/composables' const isHTMLElement = (el: EventTarget): el is HTMLElement => ('nodeName' || 'hasAttribute') in el