Skip to content

Type Alias: WindowOpenedEvent

Makaio Framework


Makaio Framework / contracts / WindowOpenedEvent

WindowOpenedEvent = z.infer<typeof HostSchemas["window.opened"]>

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

Payload of the host.window.opened event.

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