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

21 lines
430 B
TypeScript
Raw Normal View History

2019-06-12 00:03:50 +08:00
export { value, isValue, Value, UnwrapValue } from './value'
export {
state,
isState,
immutableState,
isImmutableState,
toRaw,
markImmutable,
markNonReactive
2018-09-19 23:35:38 +08:00
} from './state'
2019-06-12 00:03:50 +08:00
export { computed, ComputedValue } from './computed'
export {
effect,
stop,
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'
2018-09-19 23:35:38 +08:00
export { lock, unlock } from './lock'
2019-06-12 00:03:50 +08:00
export { OperationTypes } from './operations'