Replace native menu with custom titlebar
Some checks failed
Build Windows App / build-windows (push) Failing after 5m27s

This commit is contained in:
MrSphay
2026-05-01 17:09:07 +02:00
parent 1d1afafd1e
commit cc2aacadb5
8 changed files with 133 additions and 4 deletions

3
src/vite-env.d.ts vendored
View File

@@ -9,5 +9,8 @@ interface Window {
envHelper?: {
openFile: () => Promise<EnvHelperFileResult | null>;
saveFile: (content: string) => Promise<string | null>;
minimizeWindow: () => Promise<void>;
toggleMaximizeWindow: () => Promise<void>;
closeWindow: () => Promise<void>;
};
}