chore(connection-line): use type for imports

This commit is contained in:
moklick
2022-11-17 14:53:32 +01:00
parent 8e6a353d58
commit 493d748c18
@@ -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;