added numbering
This commit is contained in:
11
ts/numbering/multi-level-type.ts
Normal file
11
ts/numbering/multi-level-type.ts
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user