| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- 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,
- /**
- * @internal
- */
- setCurrentScope,
- onScopeDispose,
- } from './effectScope'
- export { reactiveReadArray, shallowReadArray } from './arrayInstrumentations'
- export { TrackOpTypes, TriggerOpTypes, ReactiveFlags } from './constants'
- export {
- watch,
- getCurrentWatcher,
- traverse,
- onWatcherCleanup,
- WatchErrorCodes,
- /**
- * @internal
- */
- WatcherEffect,
- type WatchOptions,
- type WatchStopHandle,
- type WatchHandle,
- type WatchEffect,
- type WatchSource,
- type WatchCallback,
- type OnCleanup,
- } from './watch'
- /**
- * @internal
- */
- export { setActiveSub } from './system'
|