From eab715b13a96a75f977794cef46063e12ff9638c Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sat, 4 Dec 2021 12:27:09 +0100 Subject: [PATCH] update(types): remove Loading type from components.ts Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com> --- src/types/components.ts | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/types/components.ts b/src/types/components.ts index e4c8a4da..72c723b8 100644 --- a/src/types/components.ts +++ b/src/types/components.ts @@ -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 }