linkHttpEvent
npm Package | @angular/common |
---|---|
Module | import { HttpEvent } from '@angular/common/http'; |
Source | common/http/src/response.ts |
type HttpEvent<T> = HttpSentEvent | HttpHeaderResponse | HttpResponse<T> | HttpProgressEvent | HttpUserEvent<T>;
linkDescription
Union type for all possible events on the response stream.
Typed according to the expected type of the response.