Files
docx-js/src/file/paragraph/links/outline-level.ts

17 lines
402 B
TypeScript
Raw Normal View History

2019-01-15 15:39:48 +01:00
// http://officeopenxml.com/WPparagraph.php
import { Attributes, XmlComponent } from "file/xml-components";
export class OutlineLevel extends XmlComponent {
public readonly level: string;
constructor(level: string) {
super("w:outlineLvl");
this.level = level;
this.root.push(
new Attributes({
val: level,
}),
);
}
}