UNPKG
monzo-ts
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
Typed Monzo API Wrapper
github.com/viralpickaxe/monzo-ts
viralpickaxe/monzo-ts
monzo-ts
/
src
/
entities
/
Balance.ts
9 lines
(7 loc)
•
160 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Currency
}
from
'../lib/Currency'
;
export
interface
Balance
{
account_id
:
string
;
balance
:
number
;
spend_today
:
number
;
currency
:
Currency
; }