added tokens infos to support refresh procedure

This commit is contained in:
Nicolas Constant 2019-03-24 15:00:42 -04:00
parent bca4d9a35f
commit a8430b0354
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 6 additions and 1 deletions

View File

@ -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 {