docx
    Preparing search index...

    Interface IXmlableObject

    Object that can be serialized to XML.

    This interface represents the intermediate object structure used by the xml library to generate the final XML output. Objects typically have a structure like:

    {
    "w:elementName": {
    _attr: { "w:attribute": "value" },
    // child elements or text
    }
    }

    Hierarchy

    • Record<string, unknown>
      • IXmlableObject

    Indexable

    • readonly [key: string]: any