1
resposta

Estou com esse erro, como corrigir?

Failed to compile.

src/app/photos/photo-list/photo-list.component.html:8:50 - error TS2339: Property 'value' does not exist on type 'EventTarget'.

8             (keyup)="debounce.next($event.target.value)"
                                                   ~~~~~

  src/app/photos/photo-list/photo-list.component.ts:11:16
    11   templateUrl: './photo-list.component.html',
                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Error occurs in the template of component PhotoListComponent.
1 resposta

Fala ai Fredman, tudo bem? Você precisa definir um tipo para o target do seu event e esse tipo precisa conter a propriedade value, algo assim:

const elemento: HTMLInputElement = event.target
console.log(elemento.value)

Espero ter ajudado.