made all tests passing

This commit is contained in:
Dolan Miu
2016-04-09 04:53:42 +01:00
parent aed59754cc
commit 84610bd72f
9 changed files with 81 additions and 20 deletions

View File

@ -0,0 +1,49 @@
import {XmlComponent} from "../../docx/xml-components";
export class Name implements XmlComponent {
private name: Array<XmlComponent>;
xmlKeys = {
}
constructor() {
this.name = new Array<XmlComponent>();
}
}
export class BasedOn {
}
export class Next {
}
export class Link {
}
export class UiPriority {
}
export class UnhideWhenUsed {
}
export class QFormat {
}
export class TableProperties {
}
export class RsId {
}
export class SemiHidden {
}