UNPKG
@isdk/bigint
Version:
latest (1.0.1)
1.0.1
1.0.0
The BigInteger class wrapped bn.js and native BitInt
github.com/isdk/bigint.js/
@isdk/bigint
/
dist
/
bn.d.ts
8 lines
(5 loc)
•
146 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
BNum
from
'bn.js'
;
declare
class
BN
extends
BNum
{
constructor
(
num
:
number
|
string
|
Uint8Array
|
boolean
|
null
); }
export
{
BN
};