2020-04-15 08:45:41 +08:00
|
|
|
export {
|
|
|
|
ref,
|
|
|
|
shallowRef,
|
|
|
|
isRef,
|
2020-04-15 08:49:18 +08:00
|
|
|
toRef,
|
2020-04-15 08:45:41 +08:00
|
|
|
toRefs,
|
2020-07-29 04:30:56 +08:00
|
|
|
unref,
|
|
|
|
proxyRefs,
|
2020-04-15 08:45:41 +08:00
|
|
|
customRef,
|
2020-04-23 06:00:10 +08:00
|
|
|
triggerRef,
|
2020-04-15 08:45:41 +08:00
|
|
|
Ref,
|
2021-09-02 04:49:12 +08:00
|
|
|
ToRef,
|
2020-05-02 04:14:30 +08:00
|
|
|
ToRefs,
|
2020-07-29 04:30:56 +08:00
|
|
|
UnwrapRef,
|
2021-12-06 12:18:21 +08:00
|
|
|
ShallowRef,
|
2020-07-29 04:30:56 +08:00
|
|
|
ShallowUnwrapRef,
|
2021-12-11 18:15:44 +08:00
|
|
|
RefUnwrapBailTypes,
|
|
|
|
CustomRefFactory
|
2020-04-15 08:45:41 +08:00
|
|
|
} from './ref'
|
2019-06-12 00:03:50 +08:00
|
|
|
export {
|
2019-08-16 21:42:46 +08:00
|
|
|
reactive,
|
2019-08-23 21:38:32 +08:00
|
|
|
readonly,
|
2020-04-16 04:45:20 +08:00
|
|
|
isReactive,
|
2019-08-23 21:38:32 +08:00
|
|
|
isReadonly,
|
2020-04-16 04:45:20 +08:00
|
|
|
isProxy,
|
|
|
|
shallowReactive,
|
2019-12-03 03:11:12 +08:00
|
|
|
shallowReadonly,
|
2020-04-16 04:45:20 +08:00
|
|
|
markRaw,
|
2020-05-03 04:16:51 +08:00
|
|
|
toRaw,
|
2020-07-17 21:28:50 +08:00
|
|
|
ReactiveFlags,
|
2021-03-26 05:30:10 +08:00
|
|
|
DeepReadonly,
|
2021-10-10 05:51:09 +08:00
|
|
|
ShallowReactive,
|
2021-03-26 05:30:10 +08:00
|
|
|
UnwrapNestedRefs
|
2019-08-16 21:42:46 +08:00
|
|
|
} from './reactive'
|
2019-09-07 00:58:31 +08:00
|
|
|
export {
|
|
|
|
computed,
|
|
|
|
ComputedRef,
|
|
|
|
WritableComputedRef,
|
2019-10-22 01:57:20 +08:00
|
|
|
WritableComputedOptions,
|
|
|
|
ComputedGetter,
|
|
|
|
ComputedSetter
|
2019-09-07 00:58:31 +08:00
|
|
|
} from './computed'
|
2021-07-21 05:39:19 +08:00
|
|
|
export { deferredComputed } from './deferredComputed'
|
2019-06-12 00:03:50 +08:00
|
|
|
export {
|
|
|
|
effect,
|
|
|
|
stop,
|
2020-02-18 12:14:07 +08:00
|
|
|
trigger,
|
|
|
|
track,
|
|
|
|
enableTracking,
|
2019-09-05 06:20:47 +08:00
|
|
|
pauseTracking,
|
2020-02-18 12:14:07 +08:00
|
|
|
resetTracking,
|
2019-08-27 23:35:22 +08:00
|
|
|
ITERATE_KEY,
|
2018-11-14 00:03:35 +08:00
|
|
|
ReactiveEffect,
|
2021-06-25 05:44:32 +08:00
|
|
|
ReactiveEffectRunner,
|
2018-11-14 00:03:35 +08:00
|
|
|
ReactiveEffectOptions,
|
2021-06-25 05:44:32 +08:00
|
|
|
EffectScheduler,
|
2021-07-09 05:09:23 +08:00
|
|
|
DebuggerOptions,
|
2021-09-02 04:49:12 +08:00
|
|
|
DebuggerEvent,
|
|
|
|
DebuggerEventExtraInfo
|
2018-11-14 00:03:35 +08:00
|
|
|
} from './effect'
|
2021-07-07 21:07:19 +08:00
|
|
|
export {
|
|
|
|
effectScope,
|
|
|
|
EffectScope,
|
|
|
|
getCurrentScope,
|
|
|
|
onScopeDispose
|
|
|
|
} from './effectScope'
|
2019-12-04 00:30:24 +08:00
|
|
|
export { TrackOpTypes, TriggerOpTypes } from './operations'
|