UNPKG

generator-angular2gen

Version:

A simple way to learn Angular2 with angular2gen !

12 lines 326 B
/** * Directive <%= nameOfDirective %>Directive */ import {Directive, ElementRef, Input} from '@angular/core'; @Directive({ selector: '[<%=reworkArguments%>]' }) export class <%= nameOfDirective %>Directive { constructor(el: ElementRef) { el.nativeElement.style.backgroundColor = 'yellow'; } }