project-client/src/shared/settings.d.ts
2023-04-09 05:57:45 +02:00

12 lines
325 B
TypeScript

import type { Rectangle } from "electron";
export interface Settings {
maximized?: boolean;
minimized?: boolean;
windowBounds?: Rectangle;
discordBranch?: "stable" | "canary" | "ptb";
openLinksWithElectron?: boolean;
vencordDir?: string;
disableMinSize?: boolean;
minimizeToTray?: boolean;
}