vue3-yuanma/packages/reactivity/src/index.ts

36 lines
670 B
TypeScript
Raw Normal View History

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,
shallowReactive,
2019-08-23 13:38:32 +00:00
readonly,
isReadonly,
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,
trigger,
track,
enableTracking,
2019-09-04 22:20:47 +00:00
pauseTracking,
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'
export { TrackOpTypes, TriggerOpTypes } from './operations'