tslinting

This commit is contained in:
Dolan
2017-03-08 20:32:30 +00:00
parent f6eb412357
commit 03b34915c6
6 changed files with 22 additions and 22 deletions

View File

@ -1,11 +1,11 @@
import {XmlComponent, Attributes} from "../xml-components";
import { Attributes, XmlComponent } from "../xml-components";
abstract class VerticalAlign extends XmlComponent {
constructor(type: string) {
super("w:vertAlign");
this.root.push(new Attributes({
val: type
val: type,
}));
}
}
@ -22,4 +22,4 @@ export class SubScript extends VerticalAlign {
constructor() {
super("subscript");
}
}
}