Type Alias: ExtensionWarning
Makaio Framework / contracts / ExtensionWarning
Type Alias: ExtensionWarning
Section titled “Type Alias: ExtensionWarning”ExtensionWarning =
z.infer<typeofExtensionWarningSchema>
Defined in: ../../../packages/contracts/src/extension/extension-warning.ts:81
Inferred TypeScript type for ExtensionWarningSchema.
Type Composition
Section titled “Type Composition”ExtensionWarningz.infer<typeof ExtensionWarningSchema>typeof ExtensionWarningSchema
Resolved Shape
Section titled “Resolved Shape”type ExtensionWarning = { severity: 'info' | 'recommended' | 'degraded'; title: string; message: string; action?: { kind: 'configure-integration'; clientId: string; bundle: string; } | { kind: 'install-extension'; extensionName: string; } | { kind: 'open-url'; url: string; } | { kind: 'run-command'; command: string; } | undefined;};