@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface TransformTraversalControl

    interface TransformTraversalControl {
        currentNode: tsc.Node;
        factory: NodeFactory;
        visitChildren(): tsc.Node;
    }
    Index

    Properties

    currentNode: tsc.Node

    The node currently being transformed.

    Use the result of .visitChildren() instead before transforming if visiting the children.

    factory: NodeFactory

    Factory to create nodes with.

    Methods

    • Visits the children of the current node and returns a new node for the current node.

      Returns tsc.Node