Open
Description
Problem Solved By The Feature
Less Code needed to connect partial state observables. The current way is to call multiple times connect:
connect('a', a$)
connect('b', b$)
Solution
I would like to add this overload to connect
:
connect(object: Partial<{ [P in keyof T]: Observable<T[P]> }>): void;
With this overload one could just do connect({a: a$, b: b$})
Wdyt? If you like this feature request I would be happy to contribute the implementation