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

26 lines
658 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;
tray?: boolean;
2023-04-09 03:57:45 +00:00
minimizeToTray?: boolean;
2023-04-10 20:53:44 +00:00
skippedUpdate?: string;
2023-04-20 02:26:56 +00:00
staticTitle?: boolean;
2023-06-09 20:47:59 +00:00
arRPC?: boolean;
2023-06-23 15:20:54 +00:00
appBadge?: boolean;
2023-06-21 12:39:41 +00:00
firstLaunch?: boolean;
2023-04-08 22:49:47 +00:00
}