Represents an element to create.

interface ElementDefinition {
    namespaceURI?: null | string;
    qualifiedName: string;
}

Properties

namespaceURI?: null | string

The target namespace URI. Note, that undefined will signal to use the document's namespace URI, while null enforces empty namespace.

qualifiedName: string

The qualified name of the element to create.