@mathjax/src
    Preparing search index...

    Class AbstractNode<N, C>Abstract

    The abstract Node class

    Type Parameters

    • N extends Node<N, C>

      The actual type of node being created

    • C extends NodeClass<N, C>

      The node class for N (the constructor rather than instance of the class)

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    childNodes: N[] = []

    The children for this node

    factory: NodeFactory<N, C>

    The NodeFactory to use to create new nodes when needed

    parent: N = null

    The parent node for this one

    properties: PropertyList = {}

    The properties for this node

    Accessors

    Methods

    • Simple string version for debugging, just to get the structure.

      Returns string

    • Parameters

      • func: (node: N, data?: any) => void
      • Optionaldata: any

      Returns any