12 lines
325 B
TypeScript
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;
|
|
}
|