redux#Observable TypeScript Examples
The following examples show how to use
redux#Observable.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: KliveStore.ts From kliveide with MIT License | 6 votes |
/**
* Interoperability point for observable/reactive libraries.
* @returns {observable} A minimal observable of state changes.
* For more information, see the observable proposal:
* https://github.com/tc39/proposal-observable
*/
[Symbol.observable](): Observable<any> {
return this.store[Symbol.observable]();
}