project-client/src/shared/settings.d.ts

19 lines
510 B
TypeScript
Raw Normal View History

2023-04-09 20:49:50 +00:00
/*
* SPDX-License-Identifier: GPL-3.0
* Vencord Desktop, a desktop app aiming to give you a snappier Discord Experience
* Copyright (c) 2023 Vendicated and Vencord contributors
*/
2023-04-09 03:04:49 +00:00
import type { Rectangle } from "electron";
2023-04-08 22:49:47 +00:00
export interface Settings {
maximized?: boolean;
minimized?: boolean;
2023-04-09 03:04:49 +00:00
windowBounds?: Rectangle;
2023-04-08 22:49:47 +00:00
discordBranch?: "stable" | "canary" | "ptb";
openLinksWithElectron?: boolean;
vencordDir?: string;
2023-04-09 03:04:49 +00:00
disableMinSize?: boolean;
2023-04-09 03:57:45 +00:00
minimizeToTray?: boolean;
2023-04-08 22:49:47 +00:00
}