@Directive({ selector: "[appHighlight]" }) export class HighlightDirective { constructor(el: ElementRef) { el.nativeElement.style.backgroundColor = "yellow"; } }
@Directive({ selector: "[appRedBorder]" }) export class RedBorderDirective { constructor(el: ElementRef) { el.nativeElement.style.border = "2px solid red"; } }