OAuth2 token data with computed expiration

interface OAuth2TokenData {
    accessToken: string;
    expiresAt: number;
    refreshToken?: string;
    scope?: string;
    tokenType?: string;
}

Properties

accessToken: string
expiresAt: number
refreshToken?: string
scope?: string
tokenType?: string