2020-02-22 03:39:32 +00:00
|
|
|
export { ref, unref, shallowRef, isRef, toRefs, Ref, UnwrapRef } from './ref'
|
2019-06-11 16:03:50 +00:00
|
|
|
export {
|
2019-08-16 13:42:46 +00:00
|
|
|
reactive,
|
|
|
|
isReactive,
|
2020-02-04 15:15:27 +00:00
|
|
|
shallowReactive,
|
2019-08-23 13:38:32 +00:00
|
|
|
readonly,
|
|
|
|
isReadonly,
|
2019-12-02 19:11:12 +00:00
|
|
|
shallowReadonly,
|
2019-06-11 16:03:50 +00:00
|
|
|
toRaw,
|
2019-08-23 13:38:32 +00:00
|
|
|
markReadonly,
|
2019-06-11 16:03:50 +00:00
|
|
|
markNonReactive
|
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'
|
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,
|
|
|
|
ReactiveEffectOptions,
|
2018-09-19 15:35:38 +00:00
|
|
|
DebuggerEvent
|
2018-11-13 16:03:35 +00:00
|
|
|
} from './effect'
|
2018-09-19 15:35:38 +00:00
|
|
|
export { lock, unlock } from './lock'
|
2019-12-03 16:30:24 +00:00
|
|
|
export { TrackOpTypes, TriggerOpTypes } from './operations'
|