* Creates an element node. * * @param tagName - Tag name of the element. * @param namespaceURI - Namespace of the element. * @param attrs - Attribute name-value pair array. Foreign attributes may contain `namespace` and `prefix` fields as well.
(tagName: string, namespaceURI: NS, attrs: Attribute[])
| 81 | * @param attrs - Attribute name-value pair array. Foreign attributes may contain `namespace` and `prefix` fields as well. |
| 82 | */ |
| 83 | createElement(tagName: string, namespaceURI: NS, attrs: Attribute[]): T['element']; |
| 84 | |
| 85 | /** |
| 86 | * Removes a node from its parent. |
no outgoing calls