From 493d748c18ab47fd7b3d1362957d7716bf884009 Mon Sep 17 00:00:00 2001 From: moklick Date: Thu, 17 Nov 2022 14:53:32 +0100 Subject: [PATCH] chore(connection-line): use type for imports --- packages/core/src/components/ConnectionLine/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/components/ConnectionLine/index.tsx b/packages/core/src/components/ConnectionLine/index.tsx index 9da8259a..28f1996a 100644 --- a/packages/core/src/components/ConnectionLine/index.tsx +++ b/packages/core/src/components/ConnectionLine/index.tsx @@ -6,8 +6,8 @@ import { getBezierPath } from '../Edges/BezierEdge'; import { getSmoothStepPath } from '../Edges/SmoothStepEdge'; import { getSimpleBezierPath } from '../Edges/SimpleBezierEdge'; import { internalsSymbol } from '../../utils'; -import { ConnectionLineComponent, ConnectionMode, HandleType, ReactFlowStore } from '../../types'; -import { Position, ConnectionLineType } from '../../types'; +import type { ConnectionLineComponent, HandleType, ReactFlowStore } from '../../types'; +import { Position, ConnectionLineType, ConnectionMode } from '../../types'; type ConnectionLineProps = { connectionNodeId: string;