Can someone explain the functionality of reportProgress in JavaScript, specifically when used with Angular Typescript? I am having trouble finding documentation on this.
return this.httpClient.request<ProductResponse>('get',`${this.basePath}/api/Productcy/GetProductBNumber`,
{
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
}
);
Context: I am utilizing Angular to communicate with .Net Core APIs and employing Swagger Codegen IO Proxy Generator for this purpose.