chore(svelte): cleanup imports

This commit is contained in:
moklick
2024-01-22 17:19:39 +01:00
parent e0d7dbe8a1
commit 1f454b42f6
3 changed files with 5 additions and 4 deletions
@@ -1,8 +1,9 @@
<script lang="ts">
import { getContext } from 'svelte';
import { EdgeLabelRenderer } from '$lib/components/EdgeLabelRenderer';
import { useHandleEdgeSelect } from '$lib/hooks/useHandleEdgeSelect';
import { getContext } from 'svelte';
import type { BaseEdgeProps } from '../BaseEdge/types';
import type { BaseEdgeProps } from '$lib/components/BaseEdge/types';
export let style: BaseEdgeProps['labelStyle'] = undefined;
export let x: BaseEdgeProps['labelX'] = undefined;