I am trying to use the big.js library, whose definition is here.
Now, this line works:
const CONSTANT_1 = new Big(0);
Whilst this line:
const CONSTANT_2 : Big = new Big(0);
causes the error:
error TS2304: Cannot find name 'Big'.
What's the problem?
