diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2022-11-29 10:03:12 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2022-11-29 10:03:12 +0100 |
| commit | dcd158ed864389b8905715321bfb2d41dc319fad (patch) | |
| tree | 0c8e104bee3202302e65c3080bf13997c3af4c31 /gui/src/shared | |
| parent | 10142a6a52768c374d62c99addcd80d5a07f44b9 (diff) | |
| parent | a33c4337ebe200739e737b465f55fd35068b59ae (diff) | |
| download | mullvadvpn-dcd158ed864389b8905715321bfb2d41dc319fad.tar.xz mullvadvpn-dcd158ed864389b8905715321bfb2d41dc319fad.zip | |
Merge branch 'fix-animation-on-escape'
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/ipc-types.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/src/shared/ipc-types.ts b/gui/src/shared/ipc-types.ts index 81ca28b1ac..c186c9ac83 100644 --- a/gui/src/shared/ipc-types.ts +++ b/gui/src/shared/ipc-types.ts @@ -1,5 +1,7 @@ import { Action, Location } from 'history'; +import { ITransitionSpecification } from '../renderer/lib/history'; + export interface ICurrentAppVersionInfo { gui: string; daemon?: string; @@ -16,6 +18,7 @@ export type IChangelog = Array<string>; export interface LocationState { scrollPosition: [number, number]; expandedSections: Record<string, boolean>; + transition: ITransitionSpecification; } export interface IHistoryObject { |
