Fix some linting errors

This commit is contained in:
Dolan
2018-09-06 08:30:23 +01:00
parent 1a3603dbfb
commit 4994bca34c
10 changed files with 136 additions and 137 deletions

View File

@ -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>();
}