From c803eb15ecc0105b947f37c660bdde30457a53b9 Mon Sep 17 00:00:00 2001 From: Evan You Date: Sat, 9 Oct 2021 18:06:12 -0400 Subject: [PATCH] chore: avoid rollup plugin ts warning --- packages/reactivity/src/ref.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/reactivity/src/ref.ts b/packages/reactivity/src/ref.ts index d1cc17eabfe..fb43668e455 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'