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,5 +1,5 @@
import { Attributes, XmlComponent } from "../xml-components";
import {Style} from "./style";
import { Style } from "./style";
export class NumberProperties extends XmlComponent {
@ -15,7 +15,7 @@ class IndentLevel extends XmlComponent {
constructor(level: number) {
super("w:ilvl");
this.root.push(new Attributes({
val: level
val: level,
}));
}
}
@ -24,7 +24,7 @@ class NumberId extends XmlComponent {
constructor(id: number) {
super("w:numId");
this.root.push(new Attributes({
val: id
val: id,
}));
}
}
}