rxjsFunctionsobserveobserve Callableobserve<T>(source: Atom<T>, options?: AtomObserveOptions): Observable<T>observe<T>(source: Signal<T>, options?: SignalObserveOptions): Observable<T>Exposes the value of an Atom as an RxJS Observable. The atom's value will be propagated into the Observable's subscribers using an effect.Type parametersTParameterssource: Atom<T>optionaloptions: AtomObserveOptionsReturns Observable<T>
Exposes the value of an
Atom
as an RxJSObservable
.The atom's value will be propagated into the
Observable
's subscribers using aneffect
.