added tokens infos to support refresh procedure
This commit is contained in:
parent
bca4d9a35f
commit
a8430b0354
|
@ -11,7 +11,12 @@ export interface TokenData {
|
|||
access_token: string;
|
||||
token_type: string;
|
||||
scope: string;
|
||||
created_at: string;
|
||||
created_at: number;
|
||||
|
||||
//TODO: Pleroma support this
|
||||
me: string;
|
||||
expires_in: number;
|
||||
refresh_token: string;
|
||||
}
|
||||
|
||||
export interface Account {
|
||||
|
|
Loading…
Reference in New Issue