@0x/contracts-test-utils: Add Numberish type.

This commit is contained in:
Lawrence Forman 2019-09-06 14:10:54 -04:00
parent d01cfee455
commit d37679c129
3 changed files with 7 additions and 0 deletions

View File

@ -77,6 +77,10 @@
{
"note": "Increase the number of ganache accounts to 20",
"pr": 2109
},
{
"note": "Add `Numberish` type.",
"pr": 2131
}
]
},

View File

@ -41,6 +41,7 @@ export {
FillEventArgs,
MarketBuyOrders,
MarketSellOrders,
Numberish,
OrderStatus,
Token,
TokenBalances,

View File

@ -175,3 +175,5 @@ export interface FillEventArgs {
makerFeePaid: BigNumber;
takerFeePaid: BigNumber;
}
export type Numberish = BigNumber | string | number;