Quando executo o linter, ele diz:
subscribe is deprecated: Use an observer instead of an error callback
Código (de um app angular 7 com angular-cli):
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
Não sei exatamente o que devo usar e como ...
Obrigado!
.subscribe({ next: this.handleUpdateResponse.bind(this), error: this.handleError.bind(this) })