Feature/refactor types in EOD historical data service (#4063)
* Refactor types
This commit is contained in:
parent
707c77f0cf
commit
a8ea8a4599
@ -410,14 +410,12 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getSearchResult(aQuery: string): Promise<
|
private async getSearchResult(aQuery: string) {
|
||||||
(LookupItem & {
|
let searchResult: (LookupItem & {
|
||||||
assetClass: AssetClass;
|
assetClass: AssetClass;
|
||||||
assetSubClass: AssetSubClass;
|
assetSubClass: AssetSubClass;
|
||||||
isin: string;
|
isin: string;
|
||||||
})[]
|
})[] = [];
|
||||||
> {
|
|
||||||
let searchResult = [];
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const abortController = new AbortController();
|
const abortController = new AbortController();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user