用对象数组减少打字稿中的内容

时间:2020-06-30 02:52:30

标签: javascript typescript

如何为我的减速器提供打字稿中的返回值。 输出为: 我将acc设置为什么? 我将如何设置输出类型为{temp:60,temp:60}的返回类型?

 return array.reduce((acc, curr: string):any => {
    const key = 'temp;
    acc[key] = 60;
    return acc;
  }, {});

是的,我知道每次迭代的键和值都相同。我现在仅以它为例。

1 个答案:

答案 0 :(得分:0)

代替任何

(acc, curr: string): { [key: string]: YourTypeHere }