This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "bignumber.js" { | |
class BigNumber { | |
constructor(value: number|string); // Acccepts a number OR a string | |
toNumber(): number; | |
// Those static attributes could have been in the module, a few lines beneath | |
static ROUND_DOWN: any; | |
static config(arg: any): void; | |
} |