Flyweight DOM - v2.3.0
    Preparing search index...

    Text on MDN

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    data: string = ''
    firstChild: null | ChildNode = null

    Node.firstChild on MDN

    lastChild: null | ChildNode = null

    Node.lastChild on MDN

    nextElementSibling: null | Element
    nextSibling: null | ChildNode = null

    Node.nextSibling on MDN

    nodeName: string = '#text'

    Node.nodeName on MDN

    nodeType: number = TEXT_NODE

    Node.nodeType on MDN

    parentNode: null | ParentNode = null

    Node.parentNode on MDN

    previousElementSibling: null | Element
    previousSibling: null | ChildNode = null

    Accessors

    • get nodeValue(): null | string

      Returns null | string

      Node.nodeValue on MDN

    • set nodeValue(value: null | string): void

      Parameters

      • value: null | string

      Returns void

      Node.nodeValue on MDN

    • get textContent(): null | string

      Returns null | string

      Node.textContent on MDN

    • set textContent(value: null | string): void

      Parameters

      • value: null | string

      Returns void

      Node.textContent on MDN

    Methods

    • Parameters

      • offset: number

      Returns this

      Text.splitText on MDN