Type alias DataFlowNode

DataFlowNode: {
    location: JsonPointerString;
    to?: DataFlowNode[] | DataFlowNode | JsonPointerString;
} | JsonPointerString

Represents a node in a data flow structure. A DataFlowNode can either be a JsonPointerString or an object with a location and an optional 'to' field which points to one or more subsequent DataFlowNodes or a JsonPointerString.

Type declaration

Generated using TypeDoc