Files
yaklang-chrome-extension/src/types/proxy.ts
T
2026-08-06 15:11:35 +08:00

11 lines
320 B
TypeScript

export interface ProxyConfig {
id: string;
name: string;
enabled: boolean;
proxyType: "direct" | "fixed_server" | "pac_script" | "auto_detect" | "bypass_list";
host?: string;
port?: number;
scheme?: "http" | "https" | "socks4" | "socks5";
pacScript?: string;
bypassList?: string[];
}