mirror of
https://github.com/TheNetsky/Microsoft-Rewards-Script.git
synced 2026-01-17 21:43:59 +00:00
24 lines
463 B
TypeScript
24 lines
463 B
TypeScript
export interface Account {
|
|
email: string
|
|
password: string
|
|
totpSecret?: string
|
|
recoveryEmail: string
|
|
geoLocale: 'auto' | string
|
|
langCode: 'en' | string
|
|
proxy: AccountProxy
|
|
saveFingerprint: ConfigSaveFingerprint
|
|
}
|
|
|
|
export interface AccountProxy {
|
|
proxyAxios: boolean
|
|
url: string
|
|
port: number
|
|
password: string
|
|
username: string
|
|
}
|
|
|
|
export interface ConfigSaveFingerprint {
|
|
mobile: boolean
|
|
desktop: boolean
|
|
}
|