Type alias Action<T>

Action<T>: ((this, ...args) => T)

An Action is a function from ParseNodes, called with the children nodes of the node it is being executed on. The current node is passed as a dynamic this, requiring an ES5 anonymous function with this typed as any.

Type Parameters

  • T

Type declaration

    • (this, ...args): T
    • Parameters

      Returns T

Generated using TypeDoc