agent-core / Exports / IWorkflowConfig
Interface: IWorkflowConfig
Workflow configuration - uses base type for cross-converter compatibility Step 1: ❌ Can't assign number/boolean to config value type directly (index signature conflict) Step 2: ✅ TConfigValue already includes primitive types (number, boolean) Step 3: ✅ Fix index signature to allow optional properties Step 4: ✅ Use proper intersection type for compatibility
Indexable
▪ [key: string]: TConfigValue | undefined
Table of contents
Properties
Properties
timeout
• Optional timeout: number
Defined in
packages/agent-core/src/interfaces/workflow-converter.ts:23
retries
• Optional retries: number
Defined in
packages/agent-core/src/interfaces/workflow-converter.ts:24
validateInput
• Optional validateInput: boolean
Defined in
packages/agent-core/src/interfaces/workflow-converter.ts:25
validateOutput
• Optional validateOutput: boolean