Browse Source

Add type

pull/4998/head
Thomas Kaul 2 weeks ago
parent
commit
6c1386cb1e
  1. 5
      apps/client/src/app/services/data.service.ts

5
apps/client/src/app/services/data.service.ts

@ -30,6 +30,7 @@ import {
AssetProfileIdentifier, AssetProfileIdentifier,
BenchmarkMarketDataDetails, BenchmarkMarketDataDetails,
BenchmarkResponse, BenchmarkResponse,
DataProviderHealthResponse,
Export, Export,
Filter, Filter,
ImportResponse, ImportResponse,
@ -381,7 +382,9 @@ export class DataService {
} }
public fetchDataProviderHealth(dataSource: DataSource) { public fetchDataProviderHealth(dataSource: DataSource) {
return this.http.get(`/api/v1/health/data-provider/${dataSource}`); return this.http.get<DataProviderHealthResponse>(
`/api/v1/health/data-provider/${dataSource}`
);
} }
public fetchExport({ public fetchExport({

Loading…
Cancel
Save