13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
|
export interface Settings {
|
||
|
maximized?: boolean;
|
||
|
minimized?: boolean;
|
||
|
windowBounds?: {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
width: number;
|
||
|
height: number;
|
||
|
};
|
||
|
discordBranch?: "stable" | "canary" | "ptb";
|
||
|
openLinksWithElectron?: boolean;
|
||
|
}
|