improve window management and title bar

This commit is contained in:
talksik
2026-02-21 12:42:43 -08:00
parent 59b973802d
commit 8546260493
26 changed files with 229 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
interface Window {
electronWindow: {
minimize: () => void;
maximize: () => void;
close: () => void;
};
}