We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5606fa9 commit cefa7c8Copy full SHA for cefa7c8
bignumber.d.ts
@@ -330,7 +330,7 @@ export namespace BigNumber {
330
suffix?: string;
331
}
332
333
- export interface BigNumberData {
+ export interface Object {
334
/**
335
* The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers.
336
*/
@@ -351,7 +351,7 @@ export namespace BigNumber {
351
export type Instance = BigNumber;
352
export type ModuloMode = 0 | 1 | 3 | 6 | 9;
353
export type RoundingMode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
354
- export type Value = string | number | BigNumber | BigNumberData;
+ export type Value = string | number | BigNumber | BigNumber.Object;
355
356
357
export declare class BigNumber {
0 commit comments