UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

12 lines (9 loc) 318 B
import { XmlComponent } from "file/xml-components"; export abstract class InitializableXmlComponent extends XmlComponent { constructor(rootKey: string, initComponent?: InitializableXmlComponent) { super(rootKey); if (initComponent) { this.root = initComponent.root; } } }