interface AfterNodeCalculationEventData {
    node: AbstractNode;
    outputValues: Record<string, any>;
}

Properties

Properties

node: AbstractNode

The node that has just been calculated

outputValues: Record<string, any>

Output values of the node's calculate method (key: node interface key, value: value for the node interface)