add method to add child to an element

This commit is contained in:
Igor Bulovski
2018-04-23 11:49:57 +02:00
parent 4f48c8fb80
commit 3691d79a4a

View File

@ -23,4 +23,8 @@ export abstract class XmlComponent extends BaseXmlComponent {
[this.rootKey]: children,
};
}
public addChildElement(child: XmlComponent | string) {
this.root.push(child);
}
}