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

@ -10,11 +10,11 @@ class TabStop extends XmlComponent {
class Tab extends XmlComponent {
constructor(value: string, position: any) {
constructor(value: string, position: number) {
super("w:tab");
this.root.push(new Attributes({
val: value,
pos: position
pos: position.toString(),
}));
}
}