From: Evan You Date: Sat, 9 Oct 2021 22:06:12 +0000 (-0400) Subject: chore: avoid rollup plugin ts warning X-Git-Tag: v3.2.21~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c803eb15ecc0105b947f37c660bdde30457a53b9;p=thirdparty%2Fvuejs%2Fcore.git chore: avoid rollup plugin ts warning --- diff --git a/packages/reactivity/src/ref.ts b/packages/reactivity/src/ref.ts index d1cc17eabf..fb43668e45 100644 --- a/packages/reactivity/src/ref.ts +++ b/packages/reactivity/src/ref.ts @@ -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'