UNPKG
@swaptoshi/dex-module
Version:
latest (1.0.0-alpha.0)
1.0.0-alpha.0
Klayr decentralized exchange (dex) on-chain module
swaptoshi.com
Swaptoshi/swaptoshi-sdk
@swaptoshi/dex-module
/
dist
/
stores
/
library
/
int
/
unsigned
/
uint.d.ts
7 lines
(6 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BigIntAble
,
BigIntBase
}
from
'../base'
;
export
type
UintString
=
string
;
export
default
class
Uint
extends
BigIntBase
{
static
from
(
value
:
BigIntAble
):
Uint
;
protected
toBigNumber
(
value
:
bigint
):
this
; }