ts.tmpl 409B

1234567891011121314151617181920212223
  1. import { Component } from '@angular/core';
  2. /**
  3. * Generated class for the $CLASSNAME component.
  4. *
  5. * See https://angular.io/api/core/Component for more info on Angular
  6. * Components.
  7. */
  8. @Component({
  9. selector: '$FILENAME',
  10. templateUrl: '$FILENAME.html'
  11. })
  12. export class $CLASSNAME {
  13. text: string;
  14. constructor() {
  15. console.log('Hello $CLASSNAME Component');
  16. this.text = 'Hello World';
  17. }
  18. }