From f2165735c1eb4f508596dfeb099e97968fd8f3e2 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 7 Mar 2017 11:23:02 +0100 Subject: [PATCH] :pencil2: update electron ProxyConfig type --- src/typings/electron.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/typings/electron.d.ts b/src/typings/electron.d.ts index f08ff7fd48c..ab5d7d9b830 100644 --- a/src/typings/electron.d.ts +++ b/src/typings/electron.d.ts @@ -3370,15 +3370,15 @@ declare namespace Electron { /** * The URL associated with the PAC file. */ - pacScript: string; + pacScript?: string; /** * Rules indicating which proxies to use. */ - proxyRules: string; + proxyRules?: string; /** * Rules indicating which URLs should bypass the proxy settings. */ - proxyBypassRules: string; + proxyBypassRules?: string; } interface NetworkEmulationOptions { -- GitLab