Files
docx-js/ts/numbering/multi-level-type.ts

11 lines
273 B
TypeScript
Raw Normal View History

2016-05-21 00:02:46 +01:00
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
}));
}
}