我正在尝试在打字稿项目中使用 mathjs。我想使用“仅数字”部分(避免 BigNumbers 和 Fractions)。我已经完成了yarn add mathjs
和yarn add @types/mathjs
。
在我的代码中,我尝试像这样导入它:
import * as math from 'mathjs/number'
但我收到一个打字稿错误:Could not find a declaration file for module 'mathjs/number'
我可以,import * as math from 'mathjs'
但是BigNumber
当我使用它时,我会到处弹出。有人知道如何像这样使用它吗?