fix numbering/multi-level-type linter warnings

This commit is contained in:
felipe
2017-03-08 17:14:36 +01:00
parent f5e81f1dfc
commit 28e11a9b08

View File

@ -1,11 +1,11 @@
import {XmlComponent, Attributes} from "../docx/xml-components"; import {Attributes, XmlComponent} from "../docx/xml-components";
export class MultiLevelType extends XmlComponent { export class MultiLevelType extends XmlComponent {
constructor(value: string) { constructor(value: string) {
super("w:multiLevelType"); super("w:multiLevelType");
this.root.push(new Attributes({ this.root.push(new Attributes({
val: value val: value,
})); }));
} }
} }