React observing
IObservable<T>
IObservable<T>
Overview
This is the default type of an observable object.
Definition
interface IObservable<T> { id: string; value: T; subscribe(callback: (val: T) => void): ISubscription;}
This is the default type of an observable object.
interface IObservable<T> { id: string; value: T; subscribe(callback: (val: T) => void): ISubscription;}