linting fixes

This commit is contained in:
Dolan
2017-03-08 21:49:41 +00:00
parent 279a5a93f1
commit 946a222d37
16 changed files with 67 additions and 66 deletions

View File

@ -6,7 +6,7 @@ abstract class BaseUnderline extends XmlComponent {
super("w:u");
this.root.push(new Attributes({
val: underlineType,
color: color
color: color,
}));
}
}
@ -88,7 +88,6 @@ export class DoubleUnderline extends BaseUnderline {
}
}
export class SingleUnderline extends BaseUnderline {
constructor() {
@ -129,4 +128,4 @@ export class WordsUnderline extends BaseUnderline {
constructor() {
super("words");
}
}
}