<input type="text" (blur)="onBlur($event)" />
export class AngularComponent {
public onBlur(event: any) {
const value = event.target.value;
// Do other things...
}
}
In the above code, what is the correct typescript type for event
?
I would like to avoid using any
here.