Interface TreeAdapterTypeMap<Node, ParentNode, ChildNode, Document, DocumentFragment, Element, CommentNode, TextNode, Template, DocumentType>

interface TreeAdapterTypeMap {
    childNode: ChildNode;
    commentNode: CommentNode;
    document: Document;
    documentFragment: DocumentFragment;
    documentType: DocumentType;
    element: Element;
    node: Node;
    parentNode: ParentNode;
    template: Template;
    textNode: TextNode;
}

Type Parameters

  • Node = unknown

  • ParentNode = unknown

  • ChildNode = unknown

  • Document = unknown

  • DocumentFragment = unknown

  • Element = unknown

  • CommentNode = unknown

  • TextNode = unknown

  • Template = unknown

  • DocumentType = unknown

Properties

childNode: ChildNode
commentNode: CommentNode
document: Document
documentFragment: DocumentFragment
documentType: DocumentType
element: Element
node: Node
parentNode: ParentNode
template: Template
textNode: TextNode

Generated using TypeDoc