80 lines
1.5 KiB
TypeScript
80 lines
1.5 KiB
TypeScript
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,
|
|
type Raw,
|
|
type DeepReadonly,
|
|
type ShallowReactive,
|
|
type UnwrapNestedRefs,
|
|
} from './reactive'
|
|
export {
|
|
computed,
|
|
type ComputedRef,
|
|
type WritableComputedRef,
|
|
type WritableComputedOptions,
|
|
type ComputedGetter,
|
|
type ComputedSetter,
|
|
} from './computed'
|
|
export { deferredComputed } from './deferredComputed'
|
|
export {
|
|
effect,
|
|
stop,
|
|
enableTracking,
|
|
pauseTracking,
|
|
resetTracking,
|
|
pauseScheduling,
|
|
resetScheduling,
|
|
ReactiveEffect,
|
|
type ReactiveEffectRunner,
|
|
type ReactiveEffectOptions,
|
|
type EffectScheduler,
|
|
type DebuggerOptions,
|
|
type DebuggerEvent,
|
|
type DebuggerEventExtraInfo,
|
|
} from './effect'
|
|
export { trigger, track, ITERATE_KEY } from './reactiveEffect'
|
|
export {
|
|
effectScope,
|
|
EffectScope,
|
|
getCurrentScope,
|
|
onScopeDispose,
|
|
} from './effectScope'
|
|
export { TrackOpTypes, TriggerOpTypes, ReactiveFlags } from './constants'
|
|
export {
|
|
baseWatch,
|
|
onEffectCleanup,
|
|
traverse,
|
|
BaseWatchErrorCodes,
|
|
type BaseWatchOptions,
|
|
type Scheduler,
|
|
} from './baseWatch'
|