Search code examples
angulartypescripteventspropertiesemit

Property 'value' does not exist on type 'EventTarget'.ngtsc(2339)


I am using Angular 11.1.4 and typscript 4.1.5. I get this error at many points...

http://i.hizliresim.com/3ngawR.png https://i.hizliresim.com/3ngawR.png How can I fix mistakes in the picture.

Same Title Available!;

The solutions given do not work because they have the same title but have different angular versions.


Solution

  • The image link doesn't work. Anyway you can try this.

    const { value, classList, ... } = $event.target as HTMLButtonElement;

    Change HTMLButtonElement interface with the interface of the element you are trying to get the event from.

    for exemple : HTMLDivElement or HTMLInputElement