其他分享
首页 > 其他分享> > 类型“typeof BigNumber”的参数不能赋给类型“Value”的参数。

类型“typeof BigNumber”的参数不能赋给类型“Value”的参数。

作者:互联网

类型“typeof BigNumber”的参数不能赋给类型“Value”的参数。
类型“typeof BigNumber”缺少类型“Instance”中的以下属性: c, e, s

 

原来:

bigNumber._toFixed = function (...arg: any) {
  return new bigNumber(this).isNaN() ? '0' : new bigNumber(_this.toFixed(...arg)).toString();
};

 

 

修改后:

bigNumber._toFixed = function (...arg: any) {
  const _this = Number(this);
  return new bigNumber(_this).isNaN() ? '0' : new bigNumber(_this.toFixed(...arg)).toString();
};

 

标签:BigNumber,bigNumber,...,Value,参数,arg,toFixed,new
来源: https://www.cnblogs.com/xulei1992/p/15161609.html