In case it needs to know if projection is provided, how can it be implemented?
@Component({
template: `{{ projections().length }}`
})
class MyComponent {
projections = contentChildren('*'); // pseudocode, '*' - fake selector
}
Is there any proper way to observe all projections despite a type?