Type Alias: ShellWorkflowStep
Makaio Framework / contracts / ShellWorkflowStep
Type Alias: ShellWorkflowStep
Section titled “Type Alias: ShellWorkflowStep”ShellWorkflowStep =
z.infer<typeofShellWorkflowStepSchema>
Defined in: ../../../packages/contracts/src/workflow/schemas.ts:227
Type Composition
Section titled “Type Composition”ShellWorkflowStepz.infer<typeof ShellWorkflowStepSchema>typeof ShellWorkflowStepSchema
Resolved Shape
Section titled “Resolved Shape”type ShellWorkflowStep = { id: string; type: 'shell'; command: Array<string>; needs?: Array<string> | undefined; if?: string | undefined; cwd?: string | undefined; env?: Record<string, string> | undefined; timeoutMs?: number | undefined;};