UNPKG

@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

4 lines 233 B
import { ObservableInput, PartialObserver } from 'rxjs'; export type SideEffectObservable<T> = ObservableInput<T>; export type SideEffectFnOrObserver<T> = PartialObserver<T> | ((value: T) => void); //# sourceMappingURL=types.d.ts.map