UNPKG
@htsoft/core-contracts
Version:
latest (1.0.1)
next (1.0.2-2)
1.0.2-2
1.0.2-1
1.0.2-0
1.0.1
1.0.0
Aiza GameFi core-contracts
github.com/jack-ht/core-contracts
jack-ht/core-contracts
@htsoft/core-contracts
/
dist
/
utils
/
Decimal.d.ts
10 lines
(9 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BigNumber
}
from
'ethers'
;
export
default
class
Decimal
{
static
new
(
value
:
number
): {
value
:
BigNumber
; };
static
raw
(
value
:
number
): {
value
:
BigNumber
; }; }