Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rename interface BigNumber.BigNumberData to BigNumber.Object
  • Loading branch information
iamdoron committed Feb 18, 2019
1 parent 5606fa9 commit cefa7c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bignumber.d.ts
Expand Up @@ -330,7 +330,7 @@ export namespace BigNumber {
suffix?: string;
}

export interface BigNumberData {
export interface Object {
/**
* The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers.
*/
Expand All @@ -351,7 +351,7 @@ export namespace BigNumber {
export type Instance = BigNumber;
export type ModuloMode = 0 | 1 | 3 | 6 | 9;
export type RoundingMode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
export type Value = string | number | BigNumber | BigNumberData;
export type Value = string | number | BigNumber | BigNumber.Object;
}

export declare class BigNumber {
Expand Down

0 comments on commit cefa7c8

Please sign in to comment.