Skip to content

Type Alias: WindowCreateRequest

Makaio Framework


Makaio Framework / contracts / WindowCreateRequest

WindowCreateRequest = z.infer<typeof HostSchemas["window.create"]["request"]>

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

Request payload for host.window.create.

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