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
+7 -1
View File
@@ -42,7 +42,7 @@ declare global {
const createEventHook: typeof import('@vueuse/core')['createEventHook']
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
const createGraphNodes: typeof import('./utils/store')['createGraphNodes']
const createHooks: typeof import('./store/hooks')['createHooks']
const createHooks: typeof import('./store/index')['createHooks']
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
const createRemoveChange: typeof import('./utils/changes')['createRemoveChange']
@@ -59,6 +59,8 @@ declare global {
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
const effectScope: typeof import('vue')['effectScope']
const extendRef: typeof import('@vueuse/core')['extendRef']
const getBezierEdgeCenter: typeof import('./components/Edges/utils/general')['getBezierEdgeCenter']
const getBezierPath: typeof import('./components/Edges/utils/bezier')['getBezierPath']
const getBoundsofRects: typeof import('./utils/graph')['getBoundsofRects']
const getConnectedEdges: typeof import('./utils/graph')['getConnectedEdges']
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
@@ -79,6 +81,10 @@ declare global {
const getOverlappingArea: typeof import('./utils/graph')['getOverlappingArea']
const getRectOfNodes: typeof import('./utils/graph')['getRectOfNodes']
const getSelectionChanges: typeof import('./utils/changes')['getSelectionChanges']
const getSimpleBezierPath: typeof import('./components/Edges/utils/simple-bezier')['getSimpleBezierPath']
const getSimpleEdgeCenter: typeof import('./components/Edges/utils/general')['getSimpleEdgeCenter']
const getSmoothStepPath: typeof import('./components/Edges/utils/smoothstep')['getSmoothStepPath']
const getStraightPath: typeof import('./components/Edges/utils/straight')['getStraightPath']
const getTransformForBounds: typeof import('./utils/graph')['getTransformForBounds']
const getXYZPos: typeof import('./utils/graph')['getXYZPos']
const getters: typeof import('./store/getters')['default']