import {Directive, Input, Output, HostListener, OnInit, ElementRef} from '@angular/core'

@Directive({
    selector: '[<%= selector %>]'
})
export default class <%= className %> implements OnInit {
    constructor(private el: ElementRef) {

    }
    ngOnInit(): void {
    }
}