UNPKG

refract-redux-xstream

Version:

Refract bindings for Redux with xstream: harness the power of reactive programming to supercharge your components!

7 lines (6 loc) 266 B
import { Stream } from 'xstream' import { Selector } from './baseTypes' export interface StoreObserveFunction { <Type>(actionTypeOrListener: string | Selector<Type>): Stream<Type> } export declare const observeFactory: (store: any) => StoreObserveFunction