Closed gregghz closed 8 years ago
Right now you have to do:
@Component( providers = @@[FooService, BarService], ... ) class BazComponent( fooService: FooService, barService: BarService )
It would be nice to reduce this to:
@Component( ... ) class BazComponent( fooService: FooService, barService: BarService )
I think this could be accomplished fairly easily in the @Component macro.
@Component
Right now you have to do:
It would be nice to reduce this to:
I think this could be accomplished fairly easily in the
@Component
macro.