1
0

fix lint errors

This commit is contained in:
Art Lowel
2020-02-17 18:01:55 +01:00
parent c5e8074040
commit 08dedb2dc3
14 changed files with 55 additions and 41 deletions

View File

@@ -187,7 +187,7 @@ export class ObjectCacheService {
* The type of the objects to get
* @return Observable<Array<T>>
*/
getList<T extends CacheableObject>(selfLinks: string[]): Observable<Array<T>> {
getList<T extends CacheableObject>(selfLinks: string[]): Observable<T[]> {
return observableCombineLatest(
selfLinks.map((selfLink: string) => this.getObjectBySelfLink<T>(selfLink))
);