]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: avoid rollup plugin ts warning
authorEvan You <yyx990803@gmail.com>
Sat, 9 Oct 2021 22:06:12 +0000 (18:06 -0400)
committerEvan You <yyx990803@gmail.com>
Sat, 9 Oct 2021 22:34:54 +0000 (18:34 -0400)
packages/reactivity/src/ref.ts

index d1cc17eabfe7cd9f4be7e53c3051d828c064c743..fb43668e4555da3734de4a7717b9387c920c2fe7 100644 (file)
@@ -1,13 +1,8 @@
 import { isTracking, trackEffects, triggerEffects } from './effect'
 import { TrackOpTypes, TriggerOpTypes } from './operations'
 import { isArray, hasChanged } from '@vue/shared'
-import {
-  isProxy,
-  toRaw,
-  isReactive,
-  toReactive,
-  ShallowReactiveMarker
-} from './reactive'
+import { isProxy, toRaw, isReactive, toReactive } from './reactive'
+import type { ShallowReactiveMarker } from './reactive'
 import { CollectionTypes } from './collectionHandlers'
 import { createDep, Dep } from './dep'