This commit is contained in:
zhom
2025-05-29 10:17:16 +04:00
commit 08678dcacc
154 changed files with 29456 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
export interface ProxySettings {
enabled: boolean;
proxy_type: string; // "http", "https", "socks4", or "socks5"
host: string;
port: number;
}
export interface TableSortingSettings {
column: string; // "name", "browser", "status"
direction: string; // "asc" or "desc"
}
export interface BrowserProfile {
name: string;
browser: string;
version: string;
profile_path: string;
proxy?: ProxySettings;
process_id?: number;
last_launch?: number;
}