Type Alias: InferInput<TInput>
InferInput<
TInput> =TInputextends"none"?z.infer<typeofNoInputSchema> :TInputextendsz.ZodTypeAny?z.infer<TInput> :never
Defined in: packages/workflow-engine/src/core/stage-factory.ts:69
Helper type to safely infer input type, handling the "none" special case
Type Parameters
TInput
TInput extends z.ZodTypeAny | "none"