Type Alias: WindowListResponse
Makaio Framework / contracts / WindowListResponse
Type Alias: WindowListResponse
Section titled “Type Alias: WindowListResponse”WindowListResponse =
z.infer<typeofHostSchemas["window.list"]["response"]>
Defined in: ../../../packages/contracts/src/host/schemas.ts:281
Response payload for host.window.list.
Type Composition
Section titled “Type Composition”WindowListResponsez.infer<(typeof HostSchemas)['window.list']['response']>(typeof HostSchemas)['window.list']['response']
Resolved Shape
Section titled “Resolved Shape”type WindowListResponse = { windows: Array<{ windowId: number; registrationId: string; visible: boolean; focused: boolean; params?: Record<string, string> | undefined; label?: string | undefined; }>;};