11 lines
273 B
TypeScript
11 lines
273 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
|
||
|
}));
|
||
|
}
|
||
|
}
|