Files
docx-js/ts/numbering/multi-level-type.ts
2016-05-26 15:08:34 +01:00

11 lines
269 B
TypeScript

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
}));
}
}