import type { MonitorId } from "./MonitorId.js"; import type { Rect } from "./Rect.js"; export type FocusedApp = { hwnd: number; monitor: MonitorId; title: string; class: string; name: string; exe: string | null; umid: string | null; isMaximized: boolean; isFullscreened: boolean; isSeelenOverlay: boolean; /** * this is the rect of the window, without the shadow. */ rect: Rect | null; }; //# sourceMappingURL=FocusedApp.d.ts.map