Based of v3.0.0b10.
This commit is contained in:
TheNetsky
2025-12-11 16:16:32 +01:00
parent 7b4b20ab4e
commit 2c4d85f732
58 changed files with 11062 additions and 0 deletions

15
src/interface/Account.ts Normal file
View File

@@ -0,0 +1,15 @@
export interface Account {
email: string
password: string
totp?: string
geoLocale: 'auto' | string
proxy: AccountProxy
}
export interface AccountProxy {
proxyAxios: boolean
url: string
port: number
password: string
username: string
}