added numbering

This commit is contained in:
Dolan Miu
2016-05-21 00:02:46 +01:00
parent cf3cd6b6a2
commit 8dcdbeef2f
7 changed files with 168 additions and 6 deletions

View File

@ -0,0 +1,11 @@
import {XmlComponent, Attributes} from "../docx/xml-components";
export class MultiLevelType extends XmlComponent {
constructor(value: string) {
super("w:multiLevelType");
this.root.push(new Attributes({
val: value
}));
}
}