FlowValueSource type exported

Last updated: 2026-03-05T10:53:28.859Z

Metrics

LOC: 3 Complexity: 1 Params: 0

Signature

type FlowValueSource

Summary

How the value for a fill step is determined

Source Code

export type FlowValueSource =
  | { type: "generator"; fieldType: FieldType; params?: GeneratorParams }
  | { type: "fixed"; value: string };

No outgoing dependencies.

Impact (Incoming)

graph LR FlowValueSource["FlowValueSource"] parseFlowScript["parseFlowScript"] mapValueToSource["mapValueToSource"] parseFlowScript -->|uses| FlowValueSource mapValueToSource -->|uses| FlowValueSource style FlowValueSource fill:#dbeafe,stroke:#2563eb,stroke-width:2px click FlowValueSource "c031953bbfc181d8.html" click parseFlowScript "010c355825278e12.html" click mapValueToSource "095f23c1feace9fe.html"
SourceType
parseFlowScript uses
mapValueToSource uses