fix windows window issues

This commit is contained in:
Boof2015
2026-06-07 18:34:23 -04:00
parent bf447dd8df
commit c56b86ba63
7 changed files with 189 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface NativeWindowChromeAPI {
// Strips the visible native frame/shadow from a frameless WS_THICKFRAME window
// while preserving native snapping and edge resize. Returns false if the handle
// was invalid or the subclass could not be installed. Windows-only; a no-op
// elsewhere.
applyFlatFrame: (nativeWindowHandle: Buffer) => boolean
}