我正在尝试在打字稿项目中使用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
时,我会突然看到ProductsController.php
的所有信息。
有人知道怎么用吗?