chore(core): remove unnecessary import paths

This commit is contained in:
braks
2022-11-06 19:20:39 +01:00
committed by Braks
parent f9af2d36fd
commit 650e7527ae
20 changed files with 13 additions and 39 deletions
@@ -1,11 +1,8 @@
<script lang="ts" setup>
import type { CSSProperties, EffectScope } from 'vue'
import type { EffectScope } from 'vue'
import EdgeWrapper from '../../components/Edges/Wrapper'
import ConnectionLine from '../../components/ConnectionLine/ConnectionLine.vue'
import { useVueFlow } from '../../composables'
import { groupEdgesByZLevel, warn } from '../../utils'
import type { EdgeComponent, EdgeUpdatable, GraphEdge } from '../../types'
import { Slots } from '../../context'
import MarkerDefinitions from './MarkerDefinitions.vue'
const slots = inject(Slots)
@@ -1,7 +1,5 @@
<script lang="ts" setup>
import { useVueFlow } from '../../composables'
import type { EdgeMarkerType, MarkerProps, MarkerType } from '../../types/edge'
import { getMarkerId } from '../../utils'
import Marker from './Marker.vue'
const { edges, connectionLineOptions, defaultMarkerColor: defaultColor } = $(useVueFlow())