feat: save window state when closing agent (#902)

This commit is contained in:
Róbert Kiss
2019-01-30 02:47:23 +01:00
committed by László Monda
parent 2c041b64ff
commit 12d361eb2e
3 changed files with 94 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import { Rectangle } from 'electron';
export interface WindowState extends Rectangle {
isMaximized: boolean;
isFullScreen: boolean;
}