fix wayland bugs

This commit is contained in:
Boof2015
2026-04-18 23:02:20 -04:00
parent 8ceaafa6c8
commit 2e66cdcbfa
15 changed files with 750 additions and 115 deletions
+8
View File
@@ -0,0 +1,8 @@
export type WindowDisplayServer = 'other' | 'x11' | 'wayland' | 'unknown'
export interface WindowCapabilities {
displayServer: WindowDisplayServer
useNativeDragRegions: boolean
supportsProgrammaticReposition: boolean
supportsGeometryPersistence: boolean
}