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
Fixing an issue where override's type wasn't correctly carried over onto
the resulting container, e.g.
```
const value: number = Container.providesValue("value", 1).providesValue("value", "two").get("value");
```
would, incorrectly, compile and cause issues at runtime. With the fix
`.get("value")` return type is correctly resolved to `string`.
Also fixed `provides*` implementations that take containers as
arguments.
0 commit comments