lots of tslinting

This commit is contained in:
Dolan
2017-03-08 21:36:09 +00:00
parent 72683ea990
commit 0e89606ec9
13 changed files with 52 additions and 52 deletions

View File

@ -1,12 +1,12 @@
import { Run } from "../run";
import { Attributes, XmlComponent } from "../xml-components";
import {Run} from "../run";
class Break extends XmlComponent {
constructor() {
super("w:br");
this.root.push(new Attributes({
type: "page"
type: "page",
}));
}
}
@ -17,4 +17,4 @@ export class PageBreak extends Run {
super();
this.root.push(new Break());
}
}
}