add method to add child to an element
This commit is contained in:
@ -23,4 +23,8 @@ export abstract class XmlComponent extends BaseXmlComponent {
|
|||||||
[this.rootKey]: children,
|
[this.rootKey]: children,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public addChildElement(child: XmlComponent | string) {
|
||||||
|
this.root.push(child);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user