What options do I have if I want to modify the constructor for fooService in this service injection?
export class MyService {
private fooService: IFooService;
public static $inject = [ "fooService" ];
constructor(fooService: FooService) {
this.fooService = fooService;
}
}
Is it possible to pass a parameter to fooService when initializing it?