Ajustando definicao do AccessToken

This commit is contained in:
Leandro Costa 2023-01-26 22:33:04 -03:00
parent 05f4e4c1e6
commit b23980922e
2 changed files with 4 additions and 3 deletions

View file

@ -30,7 +30,8 @@ export interface AccessToken {
token_type: string;
access_token: string;
expires_in: number;
created_at: number;
scope?: string;
created_at?: number;
}
export enum GrantType {