Skip to content

Type Alias: WindowListResponse

Makaio Framework


Makaio Framework / contracts / WindowListResponse

WindowListResponse = z.infer<typeof HostSchemas["window.list"]["response"]>

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

Response payload for host.window.list.

  • WindowListResponse
    • z.infer<(typeof HostSchemas)['window.list']['response']>
      • (typeof HostSchemas)['window.list']['response']
type WindowListResponse = {
windows: Array<{ windowId: number; registrationId: string; visible: boolean; focused: boolean; params?: Record<string, string> | undefined; label?: string | undefined; }>;
};