update(types): remove Loading type from components.ts

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-04 15:42:18 +01:00
parent b838977687
commit eab715b13a
+2 -12
View File
@@ -1,15 +1,5 @@
import { Component, CSSProperties, DefineComponent } from 'vue'
import {
BackgroundVariant,
Dimensions,
ElementId,
Elements,
FitViewParams,
FlowOptions,
Loading,
Position,
XYPosition,
} from './flow'
import { BackgroundVariant, Dimensions, ElementId, Elements, FitViewParams, FlowOptions, Position, XYPosition } from './flow'
import { Connection, ConnectionLineType, ConnectionMode } from './connection'
import { GraphNode, Node, NodeExtent, NodeProps, TranslateExtent } from './node'
import { EdgeProps } from './edge'
@@ -151,5 +141,5 @@ export interface FlowProps extends FlowOptions {
zoomOnDoubleClick?: boolean
edgeUpdaterRadius?: number
storageKey?: string
loading?: Loading
loading?: string
}