diff --git a/ts/numbering/multi-level-type.ts b/ts/numbering/multi-level-type.ts index 359b988e9c..d987a9c652 100644 --- a/ts/numbering/multi-level-type.ts +++ b/ts/numbering/multi-level-type.ts @@ -1,11 +1,11 @@ -import {XmlComponent, Attributes} from "../docx/xml-components"; +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 + val: value, })); } -} \ No newline at end of file +}