Skip to content

Type Alias: ComponentInfo

Makaio Framework


Makaio Framework / kernel / ComponentInfo

ComponentInfo = z.infer<typeof ComponentInfoSchema>

Defined in: ../../../packages/kernel/src/observability/shared-schemas.ts:57

Inferred type for a generic managed component info record.

  • ComponentInfo
    • z.infer<typeof ComponentInfoSchema>
      • typeof ComponentInfoSchema
type ComponentInfo = {
name: string;
displayName: string;
state: 'active' | 'stopped' | 'discovered' | 'failed' | 'skipped' | 'initializing';
error?: string | undefined;
};