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

48 lines
701 B
TypeScript
Raw Normal View History

export {
ref,
unref,
shallowRef,
isRef,
toRef,
toRefs,
customRef,
triggerRef,
Ref,
UnwrapRef,
ToRefs,
RefUnwrapBailTypes
} 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,
isReactive,
2019-08-23 21:38:32 +08:00
isReadonly,
isProxy,
shallowReactive,
shallowReadonly,
markRaw,
toRaw
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'
2019-06-12 00:03:50 +08:00
export {
effect,
stop,
trigger,
track,
enableTracking,
2019-09-05 06:20:47 +08:00
pauseTracking,
resetTracking,
2019-08-27 23:35:22 +08:00
ITERATE_KEY,
2018-11-14 00:03:35 +08:00
ReactiveEffect,
ReactiveEffectOptions,
2018-09-19 23:35:38 +08:00
DebuggerEvent
2018-11-14 00:03:35 +08:00
} from './effect'
export { TrackOpTypes, TriggerOpTypes } from './operations'