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
When referencing a singleton via foo.provided.bar, we lose type safety because provided always resolves to the ProvidedInstance rather than the specific type of the dependency.
When referencing a singleton via
foo.provided.bar
, we lose type safety becauseprovided
always resolves to theProvidedInstance
rather than the specific type of the dependency.Expected
settings.provided
resolves toSettings
Actual
settings.provided
resolves toProvidedInstance
This seems like an easy change to make -- Is there any reason this wouldn't work if I opened a PR?
The text was updated successfully, but these errors were encountered: