| 4 | * Represents a Windows monitor handle and its physical desktop coordinates. |
| 5 | */ |
| 6 | export interface WinMonitorHandle { |
| 7 | handle: number; |
| 8 | x: number; |
| 9 | y: number; |
| 10 | width: number; |
| 11 | height: number; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Retrieves raw HMONITOR handles from the Windows OS using a PowerShell bridge. |
nothing calls this directly
no outgoing calls
no test coverage detected