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
/
OAuth.ts
15 lines
(13 loc)
•
268 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
OAuthTokens
{
access_token
:
string
;
client_id
:
string
;
expires_in
:
number
;
refresh_token
:
string
;
token_type
:
'Bearer'
;
user_id
:
string
; }
export
interface
OAuthWhoAmI
{
authenticated
:
boolean
;
client_id
:
string
;
user_id
:
string
; }