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({
|
2017-03-08 17:14:36 +01:00
|
|
|
val: value,
|
2016-05-21 00:02:46 +01:00
|
|
|
}));
|
|
|
|
}
|
2017-03-08 17:14:36 +01:00
|
|
|
}
|