Attempting to implement the big.js
library, with its definition available here.
The following line functions properly:
const CONSTANT_1 = new Big(0);
However, this line:
const CONSTANT_2 : Big = new Big(0);
Results in the following error message:
error TS2304: Cannot find name 'Big'.
What could be causing this issue?