Creates a BuilderElement with the specified configuration.
Element configuration
Optional Readonlyattributes?: AttributePayload<T>Optional attributes with explicit key-value pairs.
Optional Readonlychildren?: readonly XmlComponent[]Optional child elements.
Readonlyname: stringThe XML element name.
Adds a child element to this component.
The child component or text string to add
This component (for chaining)
Prepares this component and its children for XML serialization.
This method is called by the Formatter to convert the component tree into an object structure compatible with the xml library (https://www.npmjs.com/package/xml). It recursively processes all children and handles special cases like attribute-only elements and empty elements.
The method can be overridden by subclasses to customize XML representation or execute side effects during serialization (e.g., creating relationships).
The serialization context containing document state
The XML-serializable object, or undefined to exclude from output
Flexible XML element builder with explicit attribute and child configuration.
BuilderElement provides a structured way to create XML elements with typed attributes and children. It uses the NextAttributeComponent pattern for explicit attribute key-value mapping.
Example