| 337 | } |
| 338 | |
| 339 | interface Instance { |
| 340 | |
| 341 | /** The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers, or null. */ |
| 342 | readonly c: number[] | null; |
| 343 | |
| 344 | /** The exponent of the value of this BigNumber, an integer number, -1000000000 to 1000000000, or null. */ |
| 345 | readonly e: number | null; |
| 346 | |
| 347 | /** The sign of the value of this BigNumber, -1, 1, or null. */ |
| 348 | readonly s: number | null; |
| 349 | |
| 350 | [key: string]: any; |
| 351 | } |
| 352 | |
| 353 | type Constructor = typeof BigNumber; |
| 354 | type ModuloMode = 0 | 1 | 3 | 6 | 9; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…