Type Alias: VariantUpgradeProgressEvent
Makaio Framework / contracts / VariantUpgradeProgressEvent
Type Alias: VariantUpgradeProgressEvent
Section titled “Type Alias: VariantUpgradeProgressEvent”VariantUpgradeProgressEvent =
z.infer<typeofVariantSchemas["upgradeProgress"]>
Defined in: ../../../packages/contracts/src/variant/schemas.ts:143
Payload of the host:variant.upgradeProgress event.
Type Composition
Section titled “Type Composition”VariantUpgradeProgressEventz.infer<(typeof VariantSchemas)['upgradeProgress']>(typeof VariantSchemas)['upgradeProgress']
Resolved Shape
Section titled “Resolved Shape”type VariantUpgradeProgressEvent = { status: 'error' | 'complete' | 'downloading' | 'progress' | 'applying'; percent?: number | undefined; message?: string | undefined;};