1
私はTypeScript 2.xとlodashを使用しています。私はエラーTS2365:演算子 '+'はタイプ '{}'と 'number'に適用できません
console.log(_.reduce([1, 2], (result, n) => result + n)); // 3
を使用する場合
それは私にエラーを与える:result: number
へ
error TS2365: Operator '+' cannot be applied to types '{}' and 'number'.