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