parseFlowStep function exported
Last updated: 2026-03-05T11:26:15.456Z
Location
Metrics
LOC: 4
Complexity: 2
Params: 1
Signature
parseFlowStep(input: unknown): : FlowStep | null
Summary
Parse a single FlowStep from unknown input. Returns null on validation failure.
Source Code
export function parseFlowStep(input: unknown): FlowStep | null {
const result = flowStepSchema.safeParse(input);
return result.success ? result.data : null;
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| validFlowStep | uses |