@mathjax/src
    Preparing search index...

    Class AbstractEmptyNode<N, C>Abstract

    The abstract EmptyNode 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)

    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

    • Don't step into children (there aren't any)

      Parameters

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

      Returns any