Type Alias: WorkflowInput
Makaio Framework / contracts / WorkflowInput
Type Alias: WorkflowInput
Section titled “Type Alias: WorkflowInput”WorkflowInput =
z.infer<typeofWorkflowInputSchema>
Defined in: ../../../packages/contracts/src/workflow/schemas.ts:138
Type Composition
Section titled “Type Composition”WorkflowInputz.infer<typeof WorkflowInputSchema>typeof WorkflowInputSchema
Resolved Shape
Section titled “Resolved Shape”type WorkflowInput = { name: string; type: 'string' | 'boolean' | 'choice'; description?: string | undefined; required?: boolean | undefined; default?: string | boolean | undefined; options?: Array<string> | undefined;};