feat: xray support

This commit is contained in:
zhom
2026-07-31 01:04:58 +04:00
parent 064bf297dd
commit 0a7d7803f2
112 changed files with 10291 additions and 772 deletions
+3 -1
View File
@@ -1,9 +1,10 @@
export interface ProxySettings {
proxy_type: string; // "http", "https", "socks4", "socks5", or "ss" (Shadowsocks)
proxy_type: string;
host: string;
port: number;
username?: string;
password?: string;
vless_uri?: string;
}
export interface TableSortingSettings {
@@ -545,6 +546,7 @@ export interface ParsedProxyLine {
port: number;
username?: string;
password?: string;
vless_uri?: string;
original_line: string;
}