mirror of https://github.com/vuejs/core.git
fix(runtime-vapor): export types from reactivity
This commit is contained in:
parent
f6ce3f9d43
commit
de3a611eae
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue