Skip to content

Type Alias: WindowLabelChangedEvent

Makaio Framework


Makaio Framework / contracts / WindowLabelChangedEvent

WindowLabelChangedEvent = z.infer<typeof HostSchemas["window.labelChanged"]>

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

Payload of the host.window.labelChanged event.

  • WindowLabelChangedEvent
    • z.infer<(typeof HostSchemas)['window.labelChanged']>
      • (typeof HostSchemas)['window.labelChanged']
type WindowLabelChangedEvent = {
windowId: number;
label: string;
};