fix unused imports linter warnings

This commit is contained in:
felipe
2017-03-10 15:16:03 +01:00
parent 738cac0253
commit 9d7573ed9c
16 changed files with 6 additions and 25 deletions

View File

@ -1,15 +1,12 @@
import { Attributes, XmlComponent } from "../../xml-components";
import { SectionProperties } from "./section-properties";
import { XmlComponent } from "../../xml-components";
export class Body extends XmlComponent {
constructor() {
super("w:body");
// this.root.push(new SectionProperties()); not actually needed
}
public push(component: XmlComponent): void {
// this.root.splice(this.body.length - 1, 0, component);
this.root.push(component);
}
}