]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: use explicit type import to avoid Rollup warning
authorEvan You <yyx990803@gmail.com>
Tue, 10 May 2022 02:02:41 +0000 (10:02 +0800)
committerEvan You <yyx990803@gmail.com>
Tue, 10 May 2022 02:05:24 +0000 (10:05 +0800)
packages/reactivity/src/reactive.ts

index ce689012da890454cd26b8b9411b8c480da4ad35..ac45059708d5a7f8a64d457a905adf5620edd907 100644 (file)
@@ -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',