You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reactiveNextOperator injects {upstream: Observable<T>} into combineLatest, which is currently typed to be D (the inputs dictionary). The inputs kwarg shouldn't require upstream. When I tried to use reactiveNextOperator, TypeScript was complaining that I hadn't passed in upstream in inputs.
I just took a quick stab at fixing this in http://codereview.cc/D3451, but I didn't dig in deeply enough to verify they're correct.
The text was updated successfully, but these errors were encountered:
Summary: This is a quick fix that should be thought through more thoroughly in #246.
Reviewers: O2 Material Motion, O3 Material JavaScript platform reviewers, #material_motion
Tags: #material_motion
Differential Revision: http://codereview.cc/D3451
reactiveNextOperator
injects{upstream: Observable<T>}
intocombineLatest
, which is currently typed to beD
(theinputs
dictionary). Theinputs
kwarg shouldn't requireupstream
. When I tried to usereactiveNextOperator
, TypeScript was complaining that I hadn't passed inupstream
ininputs
.I just took a quick stab at fixing this in http://codereview.cc/D3451, but I didn't dig in deeply enough to verify they're correct.
The text was updated successfully, but these errors were encountered: