export interface ProxyInfo {
    ca?: string;
    proxy: {
        hostname: string;
        port: string | number;
        protocol: string;
    };
    tunnel?: boolean;
}
