UNPKG
runes-js
Version:
latest (0.1.7)
0.1.7
0.1.6
A typescript library for Runes protocol of Bitcoin
runes-js
/
src
/
pile.d.ts
8 lines
(7 loc)
•
205 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
class
Pile
{
amount
:
bigint
;
divisibility
:
number
;
symbol
:
string
|
null
;
constructor
(
amount
:
bigint
,
divisibility
:
number
,
symbol
:
string
|
null
);
toString
():
string
; }