I'm trying to set ngIf on the host element using @HostBinding decorator.
class ListItem {
@HostBinding('ngIf') active: boolean = false;
}
And I'm getting the error: Can't bind to 'ngIf' since it isn't a known property of 'list-item'.
However I see an answer here which seems to be suggesting this usage.