@rx-angular/state
Version:
@rx-angular/state is a light-weight, flexible, strongly typed and tested tool dedicated to reduce the complexity of managing component state and side effects in angular
7 lines • 418 B
TypeScript
import { Observable, SchedulerLike, Subject, Subscribable, Subscription } from 'rxjs';
export declare function createSideEffectObservable<T>(stateObservables?: Subject<Observable<T>>, scheduler?: SchedulerLike | null): {
effects$: Observable<T>;
nextEffectObservable: (effect$: Observable<T>) => void;
subscribe: () => Subscription;
} & Subscribable<T>;
//# sourceMappingURL=side-effect-observable.d.ts.map