Fix some linting errors
This commit is contained in:
@ -5,7 +5,7 @@ export { BaseXmlComponent };
|
||||
export abstract class XmlComponent extends BaseXmlComponent {
|
||||
public root: Array<BaseXmlComponent | string>;
|
||||
|
||||
constructor(rootKey: string, initContent? : XmlComponent) {
|
||||
constructor(rootKey: string, initContent?: XmlComponent) {
|
||||
super(rootKey);
|
||||
this.root = initContent ? initContent.root : new Array<BaseXmlComponent>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user