добрый вечер, сталкнулся с такой проблемой что при возвращении отфильтрованного массива в computed методе состоящего из ObjectOfCity, TS ругается что bigCard могу указать как только
any, хотя это тот же обьект
ObjectOfCity
filteredBigCards(): ObjectOfCity[] {
return this.filters.length
? this.bigCardsList.filter((bigCard: <b>any</b>) =>
this.filters.find((filter: string) => bigCard.weather[`${filter}`])
)
: this.bigCardsList;
}
Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{ blizzard: boolean; cloudy: boolean; metorite: boolean; rainy: boolean; snowy: boolean; stormy: boolean; sunny: boolean; }