Files
stoat-desktop/src/config.d.ts
T
Jespercal 3bf697d1a9 feat: persist and restore window size and position (#74)
Finished up saving and restoring of window position and size

Signed-off-by: Jespercal <chap600@hotmail.com>
2026-02-13 00:16:53 -05:00

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;
};
};