Skip to content

Type Alias: WindowClosedEvent

Makaio Framework


Makaio Framework / contracts / WindowClosedEvent

WindowClosedEvent = z.infer<typeof HostSchemas["window.closed"]>

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

Payload of the host.window.closed event.

  • WindowClosedEvent
    • z.infer<(typeof HostSchemas)['window.closed']>
      • (typeof HostSchemas)['window.closed']
type WindowClosedEvent = {
windowId: number;
registrationId: string;
params?: Record<string, string> | undefined;
};