export interface OauthTokens { accessToken: string; refreshToken: string; expiresAt: number; scopes: string[]; } export interface OauthTokensResponse { access_token: string; refresh_token: string; expires_at: number; scopes: string[]; }