Files
Vesktop/src/shared/settings.d.ts
2023-04-09 05:04:58 +02:00

12 lines
295 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;
}