summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-06-06 11:18:09 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-06-06 12:12:45 +0100
commitee2ad5124f2773119c0665410cc65f544a02f0fc (patch)
tree402ba5af0addac5c745b52a43de537a1ae36e3a7 /gui/src
parent35a2f4db5734b27d0a47a24a641d55fe5d89afe9 (diff)
downloadmullvadvpn-ee2ad5124f2773119c0665410cc65f544a02f0fc.tar.xz
mullvadvpn-ee2ad5124f2773119c0665410cc65f544a02f0fc.zip
Fix ITunnelEndpoint and IProxyEndpoint
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/shared/daemon-rpc-types.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts
index a3f81e29be..108f6dc98f 100644
--- a/gui/src/shared/daemon-rpc-types.ts
+++ b/gui/src/shared/daemon-rpc-types.ts
@@ -41,14 +41,14 @@ export type ProxyType = 'shadowsocks' | 'custom';
export interface ITunnelEndpoint {
address: string;
protocol: RelayProtocol;
- tunnel: TunnelType;
+ tunnelType: TunnelType;
proxy?: IProxyEndpoint;
}
export interface IProxyEndpoint {
address: string;
protocol: RelayProtocol;
- proxy_type: ProxyType;
+ proxyType: ProxyType;
}
export type DaemonEvent =