3bf697d1a9
Finished up saving and restoring of window position and size Signed-off-by: Jespercal <chap600@hotmail.com>
16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
declare type DesktopConfig = {
|
|
firstLaunch: boolean;
|
|
customFrame: boolean;
|
|
minimiseToTray: boolean;
|
|
spellchecker: boolean;
|
|
hardwareAcceleration: boolean;
|
|
discordRpc: boolean;
|
|
windowState: {
|
|
x: number;
|
|
y: number;
|
|
width: number;
|
|
height: number;
|
|
isMaximised: boolean;
|
|
};
|
|
};
|