In my TypeScript 2.x project, I am utilizing lodash as well.
While using the following code:
console.log(_.reduce([1, 2], (result, n) => result + n)); // 3
An error is thrown:
Error TS2365: Operator '+' cannot be applied to types '{}' and 'number'.