summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2019-03-26 14:02:12 +0100
committerLinus Färnstrand <linus@mullvad.net>2019-03-26 14:02:12 +0100
commit893b279542915e5e2332686141382146b8aa7efe (patch)
treec987fa46f4e0e61667d963aaee8f2dc16e4e3302 /gui/src/shared
parent0d95132e5ab6eb072ede73e901d783eaef12cad1 (diff)
parent492e60e9c4907e3574ef6137a68215d5303012d7 (diff)
downloadmullvadvpn-893b279542915e5e2332686141382146b8aa7efe.tar.xz
mullvadvpn-893b279542915e5e2332686141382146b8aa7efe.zip
Merge branch 'fetch-both-ipv-exit-addrs'
Diffstat (limited to 'gui/src/shared')
-rw-r--r--gui/src/shared/daemon-rpc-types.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts
index 4582a66549..7908c4f67e 100644
--- a/gui/src/shared/daemon-rpc-types.ts
+++ b/gui/src/shared/daemon-rpc-types.ts
@@ -4,7 +4,8 @@ export interface IAccountData {
export type AccountToken = string;
export type Ip = string;
export interface ILocation {
- ip?: string;
+ ipv4?: string;
+ ipv6?: string;
country: string;
city?: string;
latitude: number;