What is the correct type for $event when using (blur) in Angular
<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. angular typescript typescript-types