Angular - Advanced Patterns
Consider this Angular provider configuration:
What will be injected when 'SERVICES' is requested?
providers: [
{ provide: 'SERVICES', useClass: ServiceA, multi: true },
{ provide: 'SERVICES', useClass: ServiceB, multi: true }
]What will be injected when 'SERVICES' is requested?
