I want to create a directive that can hide a host-element when a certain value is bound to the directive but I can't seem to use ngIf as a HostBinding-value.
atm I'm using
@HostBinding('hidden') hide: boolean = true;
But hidden is of course not the same as ngIf.
How would I go about this?