Ao finalizar a aula, o VStudio sublinha o subscribe e da o erro:
Property subscribe does not exist on type void
O metodo esta assim: like(photoId: number) { this.http.post( API + '/photos/' + photoId + '/like', {}, { observe: 'response' } ) .pipe(map(res => true)) .pipe(catchError(err => { return err.status == '304' ? of(false) : throwError(err); })); }
Sabem o que pode estar ocorrendo?
Obrigado.