12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
import {Attributes, XmlComponent} from "../docx/xml-components";
|
|
|
|
export class MultiLevelType extends XmlComponent {
|
|
|
|
constructor(value: string) {
|
|
super("w:multiLevelType");
|
|
this.root.push(new Attributes({
|
|
val: value,
|
|
}));
|
|
}
|
|
}
|