|
|
@@ -3,9 +3,6 @@
|
|
|
export const version: string = __VERSION__
|
|
|
export {
|
|
|
// core
|
|
|
- type Ref,
|
|
|
- type ShallowRef,
|
|
|
- type DebuggerEvent,
|
|
|
TrackOpTypes,
|
|
|
TriggerOpTypes,
|
|
|
reactive,
|
|
|
@@ -44,6 +41,34 @@ export {
|
|
|
onWatcherCleanup,
|
|
|
getCurrentWatcher,
|
|
|
} from '@vue/reactivity'
|
|
|
+export type {
|
|
|
+ Ref,
|
|
|
+ MaybeRef,
|
|
|
+ MaybeRefOrGetter,
|
|
|
+ ToRef,
|
|
|
+ ToRefs,
|
|
|
+ UnwrapRef,
|
|
|
+ ShallowRef,
|
|
|
+ ShallowUnwrapRef,
|
|
|
+ CustomRefFactory,
|
|
|
+ ReactiveFlags,
|
|
|
+ DeepReadonly,
|
|
|
+ ShallowReactive,
|
|
|
+ UnwrapNestedRefs,
|
|
|
+ ComputedRef,
|
|
|
+ WritableComputedRef,
|
|
|
+ WritableComputedOptions,
|
|
|
+ ComputedGetter,
|
|
|
+ ComputedSetter,
|
|
|
+ ReactiveEffectRunner,
|
|
|
+ ReactiveEffectOptions,
|
|
|
+ EffectScheduler,
|
|
|
+ DebuggerOptions,
|
|
|
+ DebuggerEvent,
|
|
|
+ DebuggerEventExtraInfo,
|
|
|
+ Raw,
|
|
|
+ Reactive,
|
|
|
+} from '@vue/reactivity'
|
|
|
|
|
|
import { NOOP } from '@vue/shared'
|
|
|
import { warn as _warn } from './warning'
|