import type { MonitorId } from "./MonitorId.js"; import type { ProcessInformation } from "./ProcessInformation.js"; export type UserAppWindow = { hwnd: number; monitor: MonitorId; title: string; appName: string; isZoomed: boolean; isIconic: boolean; isFullscreen: boolean; /** * this can be from the window property store, or inherited from the process */ umid: string | null; /** * if the window is a frame, this information will be mapped to the process creator */ process: ProcessInformation; }; //# sourceMappingURL=UserAppWindow.d.ts.map