| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- export {
- ref,
- shallowRef,
- isRef,
- toRef,
- toValue,
- toRefs,
- unref,
- proxyRefs,
- customRef,
- triggerRef,
- type Ref,
- type MaybeRef,
- type MaybeRefOrGetter,
- type ToRef,
- type ToRefs,
- type UnwrapRef,
- type ShallowRef,
- type ShallowUnwrapRef,
- type RefUnwrapBailTypes,
- type CustomRefFactory,
- } from './ref'
- export {
- reactive,
- readonly,
- isReactive,
- isReadonly,
- isShallow,
- isProxy,
- shallowReactive,
- shallowReadonly,
- markRaw,
- toRaw,
- toReactive,
- toReadonly,
- type Raw,
- type DeepReadonly,
- type ShallowReactive,
- type UnwrapNestedRefs,
- type Reactive,
- type ReactiveMarker,
- } from './reactive'
- export {
- computed,
- type ComputedRef,
- type WritableComputedRef,
- type WritableComputedOptions,
- type ComputedGetter,
- type ComputedSetter,
- type ComputedRefImpl,
- } from './computed'
- export {
- effect,
- stop,
- enableTracking,
- pauseTracking,
- resetTracking,
- onEffectCleanup,
- ReactiveEffect,
- EffectFlags,
- type ReactiveEffectRunner,
- type ReactiveEffectOptions,
- type EffectScheduler,
- type DebuggerOptions,
- type DebuggerEvent,
- type DebuggerEventExtraInfo,
- } from './effect'
- export {
- trigger,
- track,
- ITERATE_KEY,
- ARRAY_ITERATE_KEY,
- MAP_KEY_ITERATE_KEY,
- } from './dep'
- export {
- effectScope,
- EffectScope,
- getCurrentScope,
- onScopeDispose,
- } from './effectScope'
- export { reactiveReadArray, shallowReadArray } from './arrayInstrumentations'
- export { TrackOpTypes, TriggerOpTypes, ReactiveFlags } from './constants'
- export {
- watch,
- getCurrentWatcher,
- traverse,
- onWatcherCleanup,
- WatchErrorCodes,
- type WatchOptions,
- type WatchScheduler,
- type WatchStopHandle,
- type WatchHandle,
- type WatchEffect,
- type WatchSource,
- type WatchCallback,
- type OnCleanup,
- } from './watch'
|