Response when persisting node changes.

interface PersistResponse {
    abort: boolean;
    continueWith?: Node;
}

Properties

Properties

abort: boolean

Signals if further rules should/may be applied to this node. Typically, true, if processing should continue with different node. true is also returned, when the current node just got deleted, as it does not make sense to continue processing this node.

continueWith?: Node

Node to possibly continue from. Typically used, when a node got replaced. undefined signals, that processing may just continue with next nodes.