Browse Source
Feature/refactor types in EOD historical data service (#4063)
* Refactor types
pull/4064/head
Thomas Kaul
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
5 deletions
-
apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts
|
|
@ -410,14 +410,12 @@ export class EodHistoricalDataService implements DataProviderInterface { |
|
|
|
return name; |
|
|
|
} |
|
|
|
|
|
|
|
private async getSearchResult(aQuery: string): Promise< |
|
|
|
(LookupItem & { |
|
|
|
private async getSearchResult(aQuery: string) { |
|
|
|
let searchResult: (LookupItem & { |
|
|
|
assetClass: AssetClass; |
|
|
|
assetSubClass: AssetSubClass; |
|
|
|
isin: string; |
|
|
|
})[] |
|
|
|
> { |
|
|
|
let searchResult = []; |
|
|
|
})[] = []; |
|
|
|
|
|
|
|
try { |
|
|
|
const abortController = new AbortController(); |
|
|
|