ts.tmpl 352 B

12345678910111213141516171819
  1. import { Directive } from '@angular/core';
  2. /**
  3. * Generated class for the $CLASSNAME directive.
  4. *
  5. * See https://angular.io/api/core/Directive for more info on Angular
  6. * Directives.
  7. */
  8. @Directive({
  9. selector: '[$FILENAME]' // Attribute selector
  10. })
  11. export class $CLASSNAME {
  12. constructor() {
  13. console.log('Hello $CLASSNAME Directive');
  14. }
  15. }