Я пробовал что-то подобное, и это работает.
import { Directive, OnInit, HostListener } from '@angular/core';
@Directive({
selector: "[input[type='text']]"
})
export class InputTypeDirective implements OnInit{
ngOnInit(){
console.log('loading directive');
}
@HostListener('focus', ['$event'])
onFocus(e){
console.log(e);
}
}
Шаблон:
<input type="text" [(ngModel)]="username" value="">
Также включите директиву как объявление в модуль.