Update tslint to v6

This commit is contained in:
Dolan Miu
2020-08-01 17:58:16 +01:00
parent 69adbbc1c1
commit d18cfbc26f
12 changed files with 65 additions and 35 deletions

View File

@ -6,7 +6,7 @@ export const EMPTY_OBJECT = Object.seal({});
export abstract class XmlComponent extends BaseXmlComponent {
// tslint:disable-next-line:readonly-keyword no-any
protected root: Array<BaseXmlComponent | string | any>;
protected root: (BaseXmlComponent | string | any)[];
constructor(rootKey: string) {
super(rootKey);