/** * OAuth 2 token info */ export interface ITokenInfo { readonly access_token: string; readonly expiration_time: number; }