Re-order package

This commit is contained in:
Dolan
2017-12-19 23:13:11 +00:00
parent 49fc28d86c
commit df6c7cf19f
43 changed files with 51 additions and 52 deletions

View File

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