@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
5 lines • 507 B
TypeScript
import { BehaviorSubject, Observable, SchedulerLike, Subject } from 'rxjs';
import { AccumulationFn, Accumulator } from './model';
export declare const defaultAccumulator: AccumulationFn;
export declare function createAccumulationObservable<T extends object>(stateObservables?: Subject<Observable<Partial<T>>>, stateSlices?: Subject<Partial<T>>, accumulatorObservable?: BehaviorSubject<AccumulationFn>, scheduler?: SchedulerLike | null): Accumulator<T>;
//# sourceMappingURL=accumulation-observable.d.ts.map