Files
Microsoft-Rewards-Bot/src/interface/OAuth.ts
2025-11-01 20:44:31 +01:00

9 lines
192 B
TypeScript

export interface OAuth {
access_token: string;
refresh_token: string;
scope: string;
expires_in: number;
ext_expires_in: number;
foci: string;
token_type: string;
}