chore(nodes): remove unused imports

This commit is contained in:
braks
2022-10-07 22:55:38 +02:00
committed by Braks
parent d1188887c9
commit 723a03bca1
@@ -1,10 +1,9 @@
<script lang="ts" setup>
import { useVModel } from '@vueuse/core'
import { useDrag, useNodeHooks, useVueFlow } from '../../composables'
import type { CoordinateExtent, GraphNode, NodeComponent, SnapGrid, XYZPosition } from '../../types'
import type { GraphNode, NodeComponent, SnapGrid, XYZPosition } from '../../types'
import { NodeId } from '../../context'
import { clampPosition, getConnectedEdges, getHandleBounds, getXYZPos, handleNodeClick } from '../../utils'
import { applyExtent } from '../../utils/drag'
import { getConnectedEdges, getHandleBounds, getXYZPos, handleNodeClick } from '../../utils'
const { id, type, name, draggable, selectable, connectable, snapGrid, ...props } = defineProps<{
id: string