Files
ionic-framework/scripts/templates/directive/ts.tmpl
2016-09-26 10:57:21 +01:00

19 lines
387 B
Cheetah

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