From: Evan You Date: Tue, 10 May 2022 02:02:41 +0000 (+0800) Subject: chore: use explicit type import to avoid Rollup warning X-Git-Tag: v3.2.34-beta.1~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30c33af839ab33b3c45d5f9fca2a610e438cd14d;p=thirdparty%2Fvuejs%2Fcore.git chore: use explicit type import to avoid Rollup warning --- diff --git a/packages/reactivity/src/reactive.ts b/packages/reactivity/src/reactive.ts index ce689012da..ac45059708 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',