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

12 lines
273 B
TypeScript
Raw Normal View History

2017-03-08 21:49:41 +00:00
import { Attributes, XmlComponent } from "../docx/xml-components";
2016-05-21 00:02:46 +01:00
export class MultiLevelType extends XmlComponent {
2016-05-26 15:08:34 +01:00
2016-05-21 00:02:46 +01:00
constructor(value: string) {
super("w:multiLevelType");
this.root.push(new Attributes({
val: value,
2016-05-21 00:02:46 +01:00
}));
}
}