fixed all tslint errors

This commit is contained in:
Dolan Miu
2016-05-26 15:08:34 +01:00
parent f075d3b719
commit a2284df881
42 changed files with 253 additions and 254 deletions

View File

@ -5,11 +5,11 @@ export class Body extends XmlComponent {
constructor() {
super("w:body");
//this.root.push(new SectionProperties()); not actually needed
// this.root.push(new SectionProperties()); not actually needed
}
push(component: XmlComponent) {
//this.root.splice(this.body.length - 1, 0, component);
// this.root.splice(this.body.length - 1, 0, component);
this.root.push(component);
}
}