UNPKG
@kazeblockchain/kazejs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
0.9.1
Javascript libraries for Kaze wallet
kaze.solutions
KAZEBLOCKCHAIN/kazeJs
@kazeblockchain/kazejs
/
src
/
wallet
/
typings
/
AssetBalance.d.ts
12 lines
(9 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Fixed8
}
from
'../../utils'
;
import
{
Coin
}
from
'./Coin'
;
export
interface
AssetBalance
{
balance
:
number
|
Fixed8
unspent
:
Coin
[]
spent
:
Coin
[]
unconfirmed
:
Coin
[] }
export
function
AssetBalance
(
assetBalance
?:
AssetBalance
):
AssetBalance