chore(order): big number calculations (#6651)

Co-authored-by: Adrien de Peretti <25098370+adrien2p@users.noreply.github.com>
This commit is contained in:
Carlos R. L. Rodrigues
2024-03-11 17:51:00 +00:00
committed by GitHub
co-authored by Adrien de Peretti
parent 7c46b0f88b
commit d48c076b77
23 changed files with 637 additions and 197 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import BigNumber from "bignumber.js"
import BigNumberJS from "bignumber.js"
export type BigNumberRawValue = {
value: string | number
[key: string]: unknown
}
export type BigNumberInput = BigNumberRawValue | number | string | BigNumber
export type BigNumberInput = BigNumberRawValue | number | string | BigNumberJS