it is not possible to set a directive attribute with the same name as the directive name. True or false?
highlight.directive.ts:
import { Directive, Input } from '@angular/core';
@Directive({
selector: '[appHighlight]'
})
export class HighlightDirective {
@Input() appHighlight;
}
app.component.html
<div appHighlight="red"></div>