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
/
Account.ts
14 lines
(12 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
enum
AccountType
{
Prepaid
=
'uk_prepaid'
,
Debit
=
'uk_retail'
, }
export
interface
Account
{
id
:
string
;
created
:
Date
;
description
:
string
;
type
:
AccountType
;
account_number
?:
string
;
sort_code
?:
string
; }