This commit is contained in:
TheNetsky
2023-10-19 22:09:05 +02:00
parent 2366a3dd7f
commit e195f973cd
15 changed files with 81 additions and 34 deletions

View File

@@ -1,4 +1,12 @@
export interface Account {
email: string;
password: string;
proxy: AccountProxy;
}
export interface AccountProxy {
url: string;
port: number;
password: string;
username: string;
}