From 30c33af839ab33b3c45d5f9fca2a610e438cd14d Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 10 May 2022 10:02:41 +0800 Subject: [PATCH] chore: use explicit type import to avoid Rollup warning --- packages/reactivity/src/reactive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactivity/src/reactive.ts b/packages/reactivity/src/reactive.ts index ce689012..ac450597 100644 --- a/packages/reactivity/src/reactive.ts +++ b/packages/reactivity/src/reactive.ts @@ -11,7 +11,7 @@ import { shallowCollectionHandlers, shallowReadonlyCollectionHandlers } from './collectionHandlers' -import { UnwrapRefSimple, Ref, RawSymbol } from './ref' +import type { UnwrapRefSimple, Ref, RawSymbol } from './ref' export const enum ReactiveFlags { SKIP = '__v_skip',