If I have this in my Component: ```@Provides fun f...
# kotlin-inject
s
If I have this in my Component:
Copy code
@Provides fun foo(dep: Dep): Foo = FooImpl(dep)
What's the way to get
foo
out of my component without dealing with Dep in my call-site?