Files
ionic-framework/scripts/templates/directive/ts.tmpl

19 lines
352 B
Cheetah

import { Directive } from '@angular/core';
/**
* Generated class for the $CLASSNAME directive.
*
* See https://angular.io/api/core/Directive for more info on Angular
* Directives.
*/
@Directive({
selector: '[$FILENAME]' // Attribute selector
})
export class $CLASSNAME {
constructor() {
console.log('Hello $CLASSNAME Directive');
}
}