Skip to content

Type Alias: WindowState

Makaio Framework


Makaio Framework / contracts / WindowState

WindowState = z.infer<typeof WindowStateSchema>

Defined in: ../../../packages/contracts/src/host/schemas.ts:254

State snapshot for a single desktop window.

  • WindowState
    • z.infer<typeof WindowStateSchema>
      • typeof WindowStateSchema
type WindowState = {
windowId: number;
registrationId: string;
visible: boolean;
focused: boolean;
params?: Record<string, string> | undefined;
label?: string | undefined;
};