Type Alias: WindowOpenedEvent
Makaio Framework / contracts / WindowOpenedEvent
Type Alias: WindowOpenedEvent
Section titled “Type Alias: WindowOpenedEvent”WindowOpenedEvent =
z.infer<typeofHostSchemas["window.opened"]>
Defined in: ../../../packages/contracts/src/host/schemas.ts:257
Payload of the host.window.opened event.
Type Composition
Section titled “Type Composition”WindowOpenedEventz.infer<(typeof HostSchemas)['window.opened']>(typeof HostSchemas)['window.opened']
Resolved Shape
Section titled “Resolved Shape”type WindowOpenedEvent = { windowId: number; registrationId: string; visible: boolean; focused: boolean; params?: Record<string, string> | undefined; label?: string | undefined;};