mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
19 lines
392 B
Cheetah
19 lines
392 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 Directives.
|
|
*/
|
|
@Directive({
|
|
selector: '[$FILENAME]' // Attribute selector
|
|
})
|
|
export class $CLASSNAME {
|
|
|
|
constructor() {
|
|
console.log('Hello $CLASSNAME Directive');
|
|
}
|
|
|
|
}
|