mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-18 20:53:57 +00:00
9 lines
192 B
TypeScript
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;
|
|
} |