importDecimalfrom'decimal.js';
export * from'./arithmetic.js'; // TODO: this is ugly. Instead, be able to pass your own isBigNumber function to typed?varBigNumber = Decimal.clone();
BigNumber.prototype.isBigNumber = true;
exportfunctionbignumber(x) {
returnnewBigNumber(x);
}