diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2019-10-07 11:45:42 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-10-07 16:24:41 +0200 |
| commit | 9df6790f52c74d433e50d2bd8c4ff9615cafc16c (patch) | |
| tree | 982a1b480e7305b9fed7a85448b13a23a4cc725d /gui/src | |
| parent | 4519b4da0f3569ec47c3dc10bd592c6dc71da7ba (diff) | |
| download | mullvadvpn-9df6790f52c74d433e50d2bd8c4ff9615cafc16c.tar.xz mullvadvpn-9df6790f52c74d433e50d2bd8c4ff9615cafc16c.zip | |
Fix DaemonEvent type
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/shared/daemon-rpc-types.ts | 3 |
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 346b766e1b..7ce5e93111 100644 --- a/gui/src/shared/daemon-rpc-types.ts +++ b/gui/src/shared/daemon-rpc-types.ts @@ -86,7 +86,8 @@ export type DaemonEvent = | { tunnelState: TunnelState } | { settings: ISettings } | { relayList: IRelayList } - | { wireguardKey: KeygenEvent }; + | { wireguardKey: KeygenEvent } + | { appVersionInfo: IAppVersionInfo }; export interface ITunnelStateRelayInfo { endpoint: ITunnelEndpoint; |
